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 B5873138334 for ; Sun, 30 Sep 2018 08:38:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77AF9E0869; Sun, 30 Sep 2018 08:38:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 52DE3E0869 for ; Sun, 30 Sep 2018 08:38: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 26969335CFD for ; Sun, 30 Sep 2018 08:38:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B26733FA for ; Sun, 30 Sep 2018 08:38:45 +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: <1538296706.baf4366a47ebf04c794108bb4fca5abfe1700464.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-frameworks/extra-cmake-modules/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild X-VCS-Directories: kde-frameworks/extra-cmake-modules/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: baf4366a47ebf04c794108bb4fca5abfe1700464 X-VCS-Branch: master Date: Sun, 30 Sep 2018 08:38:45 +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-Archives-Salt: 3f190699-ffa9-49b9-a45b-43b94a81532f X-Archives-Hash: aac0d296ebebdbb74c853332e51b5a61 commit: baf4366a47ebf04c794108bb4fca5abfe1700464 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Sep 30 08:15:10 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Sep 30 08:38:26 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baf4366a kde-frameworks/extra-cmake-modules: Bind BUILD_QTHELP_DOCS to USE=doc Package-Manager: Portage-2.3.50, Repoman-2.3.11 Signed-off-by: Andreas Sturmlechner gentoo.org> .../extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild index 5c672c66a8d..4f32e710bac 100644 --- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild +++ b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-5.50.0.ebuild @@ -44,9 +44,10 @@ pkg_setup() { src_configure() { local mycmakeargs=( - -DBUILD_HTML_DOCS="$(usex doc)" - -DBUILD_MAN_DOCS="$(usex doc)" - -DDOC_INSTALL_DIR="/usr/share/doc/${PF}" + -DBUILD_QTHELP_DOCS=$(usex doc) + -DBUILD_HTML_DOCS=$(usex doc) + -DBUILD_MAN_DOCS=$(usex doc) + -DDOC_INSTALL_DIR=/usr/share/doc/"${PF}" ) use test && mycmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_PythonModuleGeneration=ON )