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 244B8139694 for ; Sun, 18 Jun 2017 14:24:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A0DAE0D34; Sun, 18 Jun 2017 14:24:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 58F02E0D34 for ; Sun, 18 Jun 2017 14:24:52 +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 832A4341989 for ; Sun, 18 Jun 2017 14:24:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60B1B7477 for ; Sun, 18 Jun 2017 14:24:49 +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: <1497795877.f1fa45a713d5b944f2028b997a0f7a1a6daf2873.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: f1fa45a713d5b944f2028b997a0f7a1a6daf2873 X-VCS-Branch: master Date: Sun, 18 Jun 2017 14:24:49 +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: c5e95c03-82a9-4c5b-96c4-1e01e2034b69 X-Archives-Hash: 1af6f0d3f10532381932124aaee13990 commit: f1fa45a713d5b944f2028b997a0f7a1a6daf2873 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 18 14:24:37 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jun 18 14:24:37 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f1fa45a7 app-office/libalkimia: Drop unused DEPENDs, add USE=doc Package-Manager: Portage-2.3.5, Repoman-2.3.1 app-office/libalkimia/libalkimia-9999.ebuild | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/app-office/libalkimia/libalkimia-9999.ebuild b/app-office/libalkimia/libalkimia-9999.ebuild index 7d5fb29957..7e9e3d2a9d 100644 --- a/app-office/libalkimia/libalkimia-9999.ebuild +++ b/app-office/libalkimia/libalkimia-9999.ebuild @@ -3,6 +3,7 @@ EAPI=6 +KDE_TEST="forceoptional" KMNAME="alkimia" inherit kde5 @@ -12,17 +13,20 @@ HOMEPAGE="http://kde-apps.org/content/show.php/libalkimia?content=137323" LICENSE="LGPL-2.1" SLOT="0/6" KEYWORDS="" -IUSE="" +IUSE="doc" RDEPEND=" $(add_qt_dep qtdbus) dev-libs/gmp:0=[cxx] " DEPEND="${RDEPEND} - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep kdelibs4support) - $(add_qt_dep qtnetwork) - $(add_qt_dep qtprintsupport) - $(add_qt_dep qtxml) virtual/pkgconfig + doc? ( app-doc/doxygen ) " + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package doc Doxygen) + ) + kde5_src_configure +}