diff options
author | Chris <xchrisx@uber.space> | 2020-01-08 03:32:42 +0100 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2020-01-18 16:30:56 +0000 |
commit | 6bbd4e98cf417d8be962fb2896b95dac248f2438 (patch) | |
tree | fd33db170ae706273cfcfce10fe4f79f4012102d /trinity-base/kcontrol | |
parent | 084b0b62ec405a29a0b09db92551cf973637478f (diff) | |
download | tde-packaging-gentoo-6bbd4e98cf417d8be962fb2896b95dac248f2438.tar.gz tde-packaging-gentoo-6bbd4e98cf417d8be962fb2896b95dac248f2438.zip |
Live ebuilds: Port to EAPI7 and cleanup - Round 1.
This time: kcminit, kcontrol, kdesktop, kicker, konqueror,
libkonq, tdebase-data, tdebase-meta, tdm,
and tdebase-tdeioslaves
Also: Add additional dependency for rpcgen.
Add additional USE flag for tdehwlib.
Signed-off-by: Chris <xchrisx@uber.space>
Diffstat (limited to 'trinity-base/kcontrol')
-rw-r--r-- | trinity-base/kcontrol/kcontrol-9999.ebuild | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/trinity-base/kcontrol/kcontrol-9999.ebuild b/trinity-base/kcontrol/kcontrol-9999.ebuild index 3bcfb30d..74b0977b 100644 --- a/trinity-base/kcontrol/kcontrol-9999.ebuild +++ b/trinity-base/kcontrol/kcontrol-9999.ebuild @@ -1,14 +1,15 @@ # Copyright 1999-2017 Gentoo Foundation +# Copyright 2020 The Trinity Desktop Project # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="5" +EAPI="7" TRINITY_MODULE_NAME="tdebase" -inherit trinity-meta +inherit trinity-meta-2 DESCRIPTION="The Trinity Control Center" -KEYWORDS= -IUSE="samba logitech-mouse ieee1394 +xrandr +tdehw" + +IUSE="samba logitech-mouse ieee1394 hwlib +xrandr " DEPEND="x11-libs/libX11 x11-libs/libXrender @@ -17,17 +18,17 @@ DEPEND="x11-libs/libX11 logitech-mouse? ( virtual/libusb:0 ) ieee1394? ( sys-libs/libraw1394 ) xrandr? ( x11-libs/libXrandr ) - >=trinity-base/tdelibs-${PV}:${SLOT}[xrandr?] - >=trinity-base/libkonq-${PV}:${SLOT} - >=trinity-base/kicker-${PV}:${SLOT}" + =trinity-base/tdelibs-${PV}[xrandr?] + =trinity-base/libkonq-${PV} + =trinity-base/kicker-${PV}" RDEPEND="${DEPEND} sys-apps/usbutils - >=trinity-base/kcminit-${PV}:${SLOT} - >=trinity-base/tdebase-data-${PV}:${SLOT} - >=trinity-base/tdesu-${PV}:${SLOT} - >=trinity-base/khelpcenter-${PV}:${SLOT} - >=trinity-base/khotkeys-${PV}:${SLOT}" + =trinity-base/kcminit-${PV} + =trinity-base/tdebase-data-${PV} + =trinity-base/tdesu-${PV} + =trinity-base/khelpcenter-${PV} + =trinity-base/khotkeys-${PV}" TSM_EXTRACT_ALSO="kicker/ twin/ kdesktop/ klipper/ kxkb/" @@ -36,12 +37,12 @@ src_configure() { -DWITH_XCURSOR=ON -DWITH_XRENDER=ON -DWITH_USBIDS=/usr/share/misc/usb.ids - $(cmake-utils_use_with samba SAMBA) - $(cmake-utils_use_with logitech-mouse LIBUSB) - $(cmake-utils_use_with ieee1394 LIBRAW1394) - $(cmake-utils_use_with xrandr XRANDR) - $(cmake-utils_use_with tdehw TDEHWLIB) + -DWITH_SAMBA="$(usex samba)" + -DWITH_LIBUSB="$(usex logitech-mouse)" + -DWITH_LIBRAW1394="$(usex ieee1394)" + -DWITH_XRANDR="$(usex xrandr)" + -DWITH_TDEHWLIB="$(usex hwlib)" ) - trinity-meta_src_configure + trinity-meta-2_src_configure } |