From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0429215864F for ; Thu, 23 Mar 2023 19:52:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEFBCE07BA; Thu, 23 Mar 2023 19:52:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 984C9E07BA for ; Thu, 23 Mar 2023 19:52:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1F71A340BDD for ; Thu, 23 Mar 2023 19:52:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5D2AB4A2 for ; Thu, 23 Mar 2023 19:52:21 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1679601128.8feae96d231bafbf1bdb6d924bd65b0ab354f396.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/accounts-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/accounts-qt/accounts-qt-1.16.ebuild X-VCS-Directories: net-libs/accounts-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8feae96d231bafbf1bdb6d924bd65b0ab354f396 X-VCS-Branch: master Date: Thu, 23 Mar 2023 19:52:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 61a12aa6-7722-436a-8265-d3f4dbf742fa X-Archives-Hash: 24824b451444e7989dc8361711f0ccb4 commit: 8feae96d231bafbf1bdb6d924bd65b0ab354f396 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Mar 23 19:45:28 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Mar 23 19:52:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8feae96d net-libs/accounts-qt: Fix path to qhelpgenerator Closes: https://bugs.gentoo.org/872047 Signed-off-by: Andreas Sturmlechner gentoo.org> net-libs/accounts-qt/accounts-qt-1.16.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-libs/accounts-qt/accounts-qt-1.16.ebuild b/net-libs/accounts-qt/accounts-qt-1.16.ebuild index e2767e2a5a1e..9614b92cac2c 100644 --- a/net-libs/accounts-qt/accounts-qt-1.16.ebuild +++ b/net-libs/accounts-qt/accounts-qt-1.16.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -39,6 +39,8 @@ src_prepare() { sed -e "s|share/doc/\$\${PROJECT_NAME}|share/doc/${PF}|" \ -i doc/doc.pri || die + sed -e "/QHG_LOCATION/s|qhelpgenerator|$(qt5_get_bindir)/&|" \ + -i doc/doxy.conf || die if ! use doc; then sed -e "/include( doc\/doc.pri )/d" -i ${PN}.pro || die fi