Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: app-office/libalkimia/
Date: Sun, 18 Jun 2017 14:24:53
Message-Id: 1497795877.f1fa45a713d5b944f2028b997a0f7a1a6daf2873.asturm@gentoo
1 commit: f1fa45a713d5b944f2028b997a0f7a1a6daf2873
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 18 14:24:37 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 18 14:24:37 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=f1fa45a7
7
8 app-office/libalkimia: Drop unused DEPENDs, add USE=doc
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.1
11
12 app-office/libalkimia/libalkimia-9999.ebuild | 16 ++++++++++------
13 1 file changed, 10 insertions(+), 6 deletions(-)
14
15 diff --git a/app-office/libalkimia/libalkimia-9999.ebuild b/app-office/libalkimia/libalkimia-9999.ebuild
16 index 7d5fb29957..7e9e3d2a9d 100644
17 --- a/app-office/libalkimia/libalkimia-9999.ebuild
18 +++ b/app-office/libalkimia/libalkimia-9999.ebuild
19 @@ -3,6 +3,7 @@
20
21 EAPI=6
22
23 +KDE_TEST="forceoptional"
24 KMNAME="alkimia"
25 inherit kde5
26
27 @@ -12,17 +13,20 @@ HOMEPAGE="http://kde-apps.org/content/show.php/libalkimia?content=137323"
28 LICENSE="LGPL-2.1"
29 SLOT="0/6"
30 KEYWORDS=""
31 -IUSE=""
32 +IUSE="doc"
33
34 RDEPEND="
35 $(add_qt_dep qtdbus)
36 dev-libs/gmp:0=[cxx]
37 "
38 DEPEND="${RDEPEND}
39 - $(add_frameworks_dep kcoreaddons)
40 - $(add_frameworks_dep kdelibs4support)
41 - $(add_qt_dep qtnetwork)
42 - $(add_qt_dep qtprintsupport)
43 - $(add_qt_dep qtxml)
44 virtual/pkgconfig
45 + doc? ( app-doc/doxygen )
46 "
47 +
48 +src_configure() {
49 + local mycmakeargs=(
50 + $(cmake-utils_use_find_package doc Doxygen)
51 + )
52 + kde5_src_configure
53 +}