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 83A76138335 for ; Thu, 22 Aug 2019 16:13:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66B5DE0A52; Thu, 22 Aug 2019 16:13:45 +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 47357E0A52 for ; Thu, 22 Aug 2019 16:13:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B4C09349CD4 for ; Thu, 22 Aug 2019 16:13:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4899F76E for ; Thu, 22 Aug 2019 16:13:41 +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: <1566490396.9bdfda5fcbebf43153d3577e4a87b76d64554d01.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: app-office/libalkimia/ X-VCS-Repository: proj/kde X-VCS-Files: app-office/libalkimia/libalkimia-9999.ebuild X-VCS-Directories: app-office/libalkimia/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9bdfda5fcbebf43153d3577e4a87b76d64554d01 X-VCS-Branch: master Date: Thu, 22 Aug 2019 16:13:41 +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: 49a09172-fbb8-4d8e-ba2b-89cdb7b3f282 X-Archives-Hash: ad9c912ab6c1695eaadab2f4b36778c4 commit: 9bdfda5fcbebf43153d3577e4a87b76d64554d01 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 22 15:48:47 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Aug 22 16:13:16 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=9bdfda5f app-office/libalkimia: Add USE gmp, plasma, bump subslot Package-Manager: Portage-2.3.72, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> app-office/libalkimia/libalkimia-9999.ebuild | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/app-office/libalkimia/libalkimia-9999.ebuild b/app-office/libalkimia/libalkimia-9999.ebuild index 4dd853f743..204af9dfcb 100644 --- a/app-office/libalkimia/libalkimia-9999.ebuild +++ b/app-office/libalkimia/libalkimia-9999.ebuild @@ -15,8 +15,8 @@ fi DESCRIPTION="Library with common classes and functionality used by KDE finance applications" HOMEPAGE="https://www.linux-apps.com/content/show.php/libalkimia?content=137323" LICENSE="LGPL-2.1" -SLOT="0/7" -IUSE="doc" +SLOT="0/8" +IUSE="doc gmp plasma" BDEPEND=" virtual/pkgconfig @@ -31,23 +31,28 @@ DEPEND=" $(add_frameworks_dep ki18n) $(add_frameworks_dep kiconthemes) $(add_frameworks_dep knewstuff) - $(add_frameworks_dep kpackage) $(add_frameworks_dep ktextwidgets) $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep plasma) $(add_qt_dep qtdbus) $(add_qt_dep qtdeclarative) $(add_qt_dep qtgui) $(add_qt_dep qtnetwork) - >=dev-qt/qtwebkit-5.212.0_pre20180120:5 $(add_qt_dep qtwidgets) - sci-libs/mpir:= + >=dev-qt/qtwebkit-5.212.0_pre20180120:5 + !gmp? ( sci-libs/mpir:=[cxx] ) + gmp? ( dev-libs/gmp:0=[cxx] ) + plasma? ( + $(add_frameworks_dep kpackage) + $(add_frameworks_dep plasma) + ) " RDEPEND="${DEPEND}" src_configure() { local mycmakeargs=( - $(cmake-utils_use_find_package doc Doxygen) + -DBUILD_DOXYGEN_DOCS=$(usex doc) + $(cmake-utils_use_find_package !gmp MPIR) + -DBUILD_APPLETS=$(usex plasma) ) kde5_src_configure }