Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-base/systemsettings/
Date: Wed, 17 Feb 2016 15:06:49
Message-Id: 1455721595.0fdc144e3238e36d1832440d10409fdf1ac07287.kensington@gentoo
1 commit: 0fdc144e3238e36d1832440d10409fdf1ac07287
2 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 15 18:57:09 2016 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 17 15:06:35 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fdc144e
7
8 kde-base/systemsettings: Drop old
9
10 Package-Manager: portage-2.2.27
11
12 .../systemsettings/systemsettings-4.11.22.ebuild | 99 ----------------------
13 1 file changed, 99 deletions(-)
14
15 diff --git a/kde-base/systemsettings/systemsettings-4.11.22.ebuild b/kde-base/systemsettings/systemsettings-4.11.22.ebuild
16 deleted file mode 100644
17 index 23e074f..0000000
18 --- a/kde-base/systemsettings/systemsettings-4.11.22.ebuild
19 +++ /dev/null
20 @@ -1,99 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -KDE_HANDBOOK="optional"
28 -KMNAME="kde-workspace"
29 -OPENGL_REQUIRED="optional"
30 -VIRTUALX_REQUIRED="test"
31 -VIRTUALDBUS_TEST="true"
32 -inherit kde4-meta
33 -
34 -DESCRIPTION="System settings utility"
35 -HOMEPAGE+=" https://userbase.kde.org/System_Settings"
36 -IUSE="debug gtk +kscreen +usb"
37 -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
38 -
39 -COMMONDEPEND="
40 - app-misc/strigi
41 - dev-libs/glib:2
42 - $(add_kdebase_dep kwin)
43 - $(add_kdebase_dep libkworkspace)
44 - media-libs/fontconfig
45 - >=media-libs/freetype-2
46 - >=x11-libs/libxklavier-3.2
47 - x11-libs/libX11
48 - x11-libs/libXcursor
49 - x11-libs/libXext
50 - x11-libs/libXfixes
51 - x11-libs/libXft
52 - x11-libs/libXi
53 - x11-libs/libxkbfile
54 - x11-libs/libXrandr
55 - x11-libs/libXtst
56 - opengl? ( virtual/opengl )
57 - usb? ( virtual/libusb:0 )
58 -"
59 -DEPEND="${COMMONDEPEND}
60 - x11-proto/kbproto
61 - x11-proto/xextproto
62 -"
63 -RDEPEND="${COMMONDEPEND}
64 - sys-libs/timezone-data
65 - x11-apps/setxkbmap
66 - x11-misc/xkeyboard-config
67 - gtk? ( kde-misc/kde-gtk-config )
68 - kscreen? ( kde-misc/kscreen:4 )
69 -"
70 -
71 -KMEXTRA="
72 - kcontrol/
73 -"
74 -KMEXTRACTONLY="
75 - krunner/dbus/org.kde.krunner.App.xml
76 - krunner/dbus/org.kde.screensaver.xml
77 - ksmserver/screenlocker/dbus/org.kde.screensaver.xml
78 - kwin/
79 - libs/
80 - plasma/
81 -"
82 -# fails to connect to a kded instance
83 -RESTRICT="test"
84 -
85 -PATCHES=( "${FILESDIR}/${PN}-kcm-randr.patch" )
86 -
87 -src_unpack() {
88 - if use handbook; then
89 - KMEXTRA+="
90 - doc/kcontrol
91 - doc/kfontview
92 - "
93 - fi
94 -
95 - kde4-meta_src_unpack
96 -}
97 -
98 -src_prepare() {
99 - sed -i -e 's/systemsettingsrc DESTINATION ${SYSCONF_INSTALL_DIR}/systemsettingsrc DESTINATION ${CONFIG_INSTALL_DIR}/' \
100 - systemsettings/CMakeLists.txt \
101 - || die "Failed to fix systemsettingsrc install location"
102 -
103 - kde4-meta_src_prepare
104 -}
105 -
106 -# FIXME: is have_openglxvisual found without screensaver
107 -src_configure() {
108 - # Old keyboard-detection code is unmaintained,
109 - # so we force the new stuff, using libxklavier.
110 - local mycmakeargs=(
111 - -DUSE_XKLAVIER=ON -DWITH_LibXKlavier=ON
112 - -DWITH_GLIB2=ON -DWITH_GObject=ON
113 - -DBUILD_KCM_RANDR=$(usex !kscreen)
114 - $(cmake-utils_use_with opengl OpenGL)
115 - $(cmake-utils_use_with usb)
116 - )
117 -
118 - kde4-meta_src_configure
119 -}