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 CA838138334 for ; Sun, 24 Feb 2019 18:01:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F63BE0903; Sun, 24 Feb 2019 18:01:49 +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 79605E0903 for ; Sun, 24 Feb 2019 18:01:49 +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 39A2D3405BB for ; Sun, 24 Feb 2019 18:01:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A41A2326 for ; Sun, 24 Feb 2019 18:01: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: <1551031278.aef4348902c525da48c8aa2a07271d0d8d7c9b97.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libalkimia/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/libalkimia/libalkimia-7.0.2-r1.ebuild X-VCS-Directories: app-office/libalkimia/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: aef4348902c525da48c8aa2a07271d0d8d7c9b97 X-VCS-Branch: master Date: Sun, 24 Feb 2019 18:01: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 942d7730-94ad-4da2-b0ba-d6ec2a26a7ee X-Archives-Hash: 23855ae940c2a81f84fd2c6e827bb973 commit: aef4348902c525da48c8aa2a07271d0d8d7c9b97 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Feb 24 16:59:38 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Feb 24 18:01:18 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aef43489 app-office/libalkimia: Add USE gmp, EAPI-7 bump Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> app-office/libalkimia/libalkimia-7.0.2-r1.ebuild | 38 ++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/app-office/libalkimia/libalkimia-7.0.2-r1.ebuild b/app-office/libalkimia/libalkimia-7.0.2-r1.ebuild new file mode 100644 index 00000000000..51c04e31c98 --- /dev/null +++ b/app-office/libalkimia/libalkimia-7.0.2-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_TEST="forceoptional" +KMNAME="alkimia" +inherit kde5 + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/${KMNAME}/${PV}/${KMNAME}-${PV}.tar.xz" + KEYWORDS="~amd64 ~x86" +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 gmp" + +BDEPEND=" + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" +DEPEND=" + $(add_qt_dep qtdbus) + !gmp? ( sci-libs/mpir:= ) + gmp? ( dev-libs/gmp:0=[cxx] ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package doc Doxygen) + $(cmake-utils_use_find_package !gmp MPIR) + ) + kde5_src_configure +}