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 659F8158009 for ; Sun, 18 Jun 2023 15:31:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82337E0871; Sun, 18 Jun 2023 15:31:23 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 69900E0871 for ; Sun, 18 Jun 2023 15:31:23 +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 8573034100D for ; Sun, 18 Jun 2023 15:31:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3E8AA66 for ; Sun, 18 Jun 2023 15:31:20 +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: <1687102266.a6fb4ec5e0b2af91d66c6a0791d5dc6b84c7a02a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/qca/ X-VCS-Repository: repo/gentoo 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: a6fb4ec5e0b2af91d66c6a0791d5dc6b84c7a02a X-VCS-Branch: master Date: Sun, 18 Jun 2023 15:31:20 +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: 312684a5-c81f-4c25-99fd-64874d904a21 X-Archives-Hash: 19ff0a8a9d995fc2516c9057be4a5258 commit: a6fb4ec5e0b2af91d66c6a0791d5dc6b84c7a02a Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 18 15:20:05 2023 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 18 15:31:06 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6fb4ec5 app-crypt/qca: Fix build with USE=doc Thanks-to: Thomas Bettler gmail.com> Closes: https://github.com/gentoo/gentoo/pull/31427 Closes: https://bugs.gentoo.org/908454 Signed-off-by: Andreas Sturmlechner 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 0cdc05cdc7ad..c87391d21e98 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