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/kcrash/
Date: Wed, 29 Jan 2014 15:37:13
Message-Id: 1391009807.502c0fb231df7e17dd130fdd9bc46619b8918b78.kensington@gentoo
1 commit: 502c0fb231df7e17dd130fdd9bc46619b8918b78
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 29 15:36:47 2014 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 29 15:36:47 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=502c0fb2
7
8 [kde-frameworks/kcrash] Add X USE flag.
9
10 Package-Manager: portage-2.2.7
11
12 ---
13 kde-frameworks/kcrash/kcrash-9999.ebuild | 17 ++++++++++++++---
14 1 file changed, 14 insertions(+), 3 deletions(-)
15
16 diff --git a/kde-frameworks/kcrash/kcrash-9999.ebuild b/kde-frameworks/kcrash/kcrash-9999.ebuild
17 index b70c6be..ad78191 100644
18 --- a/kde-frameworks/kcrash/kcrash-9999.ebuild
19 +++ b/kde-frameworks/kcrash/kcrash-9999.ebuild
20 @@ -9,14 +9,25 @@ inherit kde-frameworks
21 DESCRIPTION="Framework for intercepting and handling application crashes"
22 LICENSE="LGPL-2+"
23 KEYWORDS=""
24 -IUSE=""
25 +IUSE="X"
26
27 RDEPEND="
28 $(add_frameworks_dep kcoreaddons)
29 $(add_frameworks_dep kwindowsystem)
30 - dev-qt/qtx11extras:5
31 - x11-libs/libX11
32 + X? (
33 + dev-qt/qtx11extras:5
34 + x11-libs/libX11
35 + )
36 "
37 DEPEND="${RDEPEND}
38 test? ( dev-qt/qtwidgets:5 )
39 + X? ( x11-proto/xproto )
40 "
41 +
42 +src_configure() {
43 + local mycmakeargs=(
44 + $(cmake-utils_use_find_package X X11)
45 + )
46 +
47 + kde-frameworks_src_configure
48 +}