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: Thu, 29 Dec 2016 12:44:14
Message-Id: 1483015439.1f1ccd1758df680e8e4cd9d832d6a5aaa0de3872.kensington@gentoo
1 commit: 1f1ccd1758df680e8e4cd9d832d6a5aaa0de3872
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 29 12:43:53 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 29 12:43:59 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=1f1ccd17
7
8 kde-frameworks/kcrash: remove broken X USE flag
9
10 Gentoo-bug: 602988
11
12 Package-Manager: Portage-2.3.3, Repoman-2.3.1
13
14 kde-frameworks/kcrash/kcrash-9999.ebuild | 18 ++++--------------
15 1 file changed, 4 insertions(+), 14 deletions(-)
16
17 diff --git a/kde-frameworks/kcrash/kcrash-9999.ebuild b/kde-frameworks/kcrash/kcrash-9999.ebuild
18 index c5515d5..21af306 100644
19 --- a/kde-frameworks/kcrash/kcrash-9999.ebuild
20 +++ b/kde-frameworks/kcrash/kcrash-9999.ebuild
21 @@ -10,7 +10,7 @@ inherit kde5
22 DESCRIPTION="Framework for intercepting and handling application crashes"
23 LICENSE="LGPL-2+"
24 KEYWORDS=""
25 -IUSE="nls X"
26 +IUSE="nls"
27
28 # requires running kde environment
29 RESTRICT+=" test"
30 @@ -19,21 +19,11 @@ RDEPEND="
31 $(add_frameworks_dep kcoreaddons)
32 $(add_frameworks_dep kwindowsystem)
33 $(add_qt_dep qtgui)
34 - X? (
35 - $(add_qt_dep qtx11extras)
36 - x11-libs/libX11
37 - )
38 + $(add_qt_dep qtx11extras)
39 + x11-libs/libX11
40 "
41 DEPEND="${RDEPEND}
42 + x11-proto/xproto
43 nls? ( $(add_qt_dep linguist-tools) )
44 test? ( $(add_qt_dep qtwidgets) )
45 - X? ( x11-proto/xproto )
46 "
47 -
48 -src_configure() {
49 - local mycmakeargs=(
50 - $(cmake-utils_use_find_package X X11)
51 - )
52 -
53 - kde5_src_configure
54 -}