Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-frameworks/frameworkintegration/
Date: Sun, 27 Nov 2016 11:31:01
Message-Id: 1480246246.1d5baf216ddc832abfb43e8961e16a7c5ba318dc.kensington@gentoo
1 commit: 1d5baf216ddc832abfb43e8961e16a7c5ba318dc
2 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
3 AuthorDate: Sat Nov 26 20:19:32 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 27 11:30:46 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=1d5baf21
7
8 kde-frameworks/frameworkintegration: Add missing DEPEND
9
10 Upstream commit a540c1d2f0342abf0f9bc3546988b61398155f08
11
12 Package-Manager: portage-2.3.0
13
14 .../frameworkintegration/frameworkintegration-9999.ebuild | 7 ++++++-
15 1 file changed, 6 insertions(+), 1 deletion(-)
16
17 diff --git a/kde-frameworks/frameworkintegration/frameworkintegration-9999.ebuild b/kde-frameworks/frameworkintegration/frameworkintegration-9999.ebuild
18 index 2d837a5..a06d98a 100644
19 --- a/kde-frameworks/frameworkintegration/frameworkintegration-9999.ebuild
20 +++ b/kde-frameworks/frameworkintegration/frameworkintegration-9999.ebuild
21 @@ -7,7 +7,7 @@ EAPI=6
22 VIRTUALX_REQUIRED="test"
23 inherit kde5
24
25 -DESCRIPTION="Framework for integrating Qt applications with KDE workspaces"
26 +DESCRIPTION="Framework for integrating Qt applications with KDE Plasma workspaces"
27 LICENSE="LGPL-2+"
28 KEYWORDS=""
29 IUSE="X"
30 @@ -17,6 +17,7 @@ RDEPEND="
31 $(add_frameworks_dep kconfigwidgets)
32 $(add_frameworks_dep kiconthemes)
33 $(add_frameworks_dep knotifications)
34 + $(add_frameworks_dep kpackage)
35 $(add_frameworks_dep kwidgetsaddons)
36 $(add_qt_dep qtgui)
37 $(add_qt_dep qtwidgets)
38 @@ -33,7 +34,11 @@ RESTRICT+=" test"
39 src_configure() {
40 local mycmakeargs=(
41 $(cmake-utils_use_find_package X XCB)
42 + -DCMAKE_DISABLE_FIND_PACKAGE_AppStreamQt=ON
43 + -DCMAKE_DISABLE_FIND_PACKAGE_packagekitqt5=ON
44 )
45 + # appstream requires app-admin/packagekit-qt and
46 + # not yet packaged AppStreamQt 0.10
47
48 kde5_src_configure
49 }