From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1530060-garchives=archives.gentoo.org@lists.gentoo.org> 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 4A82B158009 for <garchives@archives.gentoo.org>; Sun, 18 Jun 2023 15:32:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8310AE087B; Sun, 18 Jun 2023 15:32:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 6535CE087B for <gentoo-commits@lists.gentoo.org>; Sun, 18 Jun 2023 15:32:50 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D61F341010 for <gentoo-commits@lists.gentoo.org>; Sun, 18 Jun 2023 15:32:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D83A2A80 for <gentoo-commits@lists.gentoo.org>; Sun, 18 Jun 2023 15:32:47 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> 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" <asturm@gentoo.org> Message-ID: <1687102342.045424c12c2c2936e622d65ae124d161795cd211.asturm@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: app-crypt/qca/ X-VCS-Repository: proj/qt X-VCS-Files: app-crypt/qca/qca-2.3.6-r2.ebuild X-VCS-Directories: app-crypt/qca/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 045424c12c2c2936e622d65ae124d161795cd211 X-VCS-Branch: master Date: Sun, 18 Jun 2023 15:32:47 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0a793150-790e-4e19-ada4-6ddbb9c40cef X-Archives-Hash: 98ecd6c0fc5205000808b27936777e55 commit: 045424c12c2c2936e622d65ae124d161795cd211 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sun Jun 18 15:20:05 2023 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sun Jun 18 15:32:22 2023 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=045424c1 app-crypt/qca: Fix build with USE=doc Thanks-to: Thomas Bettler <thomas.bettler <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/31427 Closes: https://bugs.gentoo.org/908454 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> app-crypt/qca/qca-2.3.6-r2.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app-crypt/qca/qca-2.3.6-r2.ebuild b/app-crypt/qca/qca-2.3.6-r2.ebuild index 0cdc05cd..c87391d2 100644 --- a/app-crypt/qca/qca-2.3.6-r2.ebuild +++ b/app-crypt/qca/qca-2.3.6-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit cmake kde.org multibuild qmake-utils +inherit cmake kde.org multibuild out-of-source-utils qmake-utils DESCRIPTION="Qt Cryptographic Architecture (QCA)" HOMEPAGE="https://userbase.kde.org/QCA" @@ -89,6 +89,9 @@ src_configure() { src_compile() { multibuild_foreach_variant cmake_src_compile + if use doc; then + multibuild_for_best_variant cmake_build doc + fi } src_test() { @@ -103,10 +106,7 @@ src_install() { multibuild_foreach_variant cmake_src_install if use doc; then - pushd "${BUILD_DIR}" >/dev/null || die - doxygen Doxyfile || die - dodoc -r apidocs/html - popd >/dev/null || die + multibuild_for_best_variant run_in_build_dir dodoc -r apidocs/html fi if use examples; then