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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 61705158041 for ; Sun, 5 Sep 2021 20:15:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97242E08F6; Sun, 5 Sep 2021 20:15:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72E73E08F6 for ; Sun, 5 Sep 2021 20:15:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A04DE340FDB for ; Sun, 5 Sep 2021 20:15:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D62AA7 for ; Sun, 5 Sep 2021 20:15:48 +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: <1630866216.2cb28882af7a98143b6bacedfa6e1f420d4b8c25.asturm@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-qt/qdoc/ X-VCS-Repository: proj/qt X-VCS-Files: dev-qt/qdoc/qdoc-5.15.9999.ebuild X-VCS-Directories: dev-qt/qdoc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2cb28882af7a98143b6bacedfa6e1f420d4b8c25 X-VCS-Branch: master Date: Sun, 5 Sep 2021 20:15:48 +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: c4c61bd1-2914-4e47-b344-6b2f68099db5 X-Archives-Hash: 6a66e23e0ea9e1f6005d50cffeaa4d9c commit: 2cb28882af7a98143b6bacedfa6e1f420d4b8c25 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Sep 5 15:43:27 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Sep 5 18:23:36 2021 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=2cb28882 dev-qt/qdoc: Fix out-of-source build in subdir again Bug: https://bugs.gentoo.org/676948 Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qdoc/qdoc-5.15.9999.ebuild | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dev-qt/qdoc/qdoc-5.15.9999.ebuild b/dev-qt/qdoc/qdoc-5.15.9999.ebuild index 5dfef52d..0d3a78be 100644 --- a/dev-qt/qdoc/qdoc-5.15.9999.ebuild +++ b/dev-qt/qdoc/qdoc-5.15.9999.ebuild @@ -31,3 +31,12 @@ src_prepare() { qt5-build_src_prepare } + +src_configure() { + # qt5_tools_configure() not enough here, needs another fix, bug 676948 + mkdir -p "${QT5_BUILD_DIR}"/src/qdoc || die + qt5_qmake "${QT5_BUILD_DIR}" + cp src/qdoc/qtqdoc-config.pri "${QT5_BUILD_DIR}"/src/qdoc || die + + qt5-build_src_configure +}