diff options
author | Chris <xchrisx@uber.space> | 2020-01-29 21:28:51 +0100 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2020-02-14 22:08:24 +0000 |
commit | fa565e6f4d1db3395cc19ee91bba03e67a5ceb97 (patch) | |
tree | a781c4e7b92aa4fb9e1e88a51e6a1be09e6677a4 /trinity-base/kcontrol | |
parent | 4ee3ee1e29b61179cf91e9e8c87129473793fe7c (diff) | |
download | tde-packaging-gentoo-fa565e6f4d1db3395cc19ee91bba03e67a5ceb97.tar.gz tde-packaging-gentoo-fa565e6f4d1db3395cc19ee91bba03e67a5ceb97.zip |
Live ebuilds: More options, fixed dependencies and cleanup.
TQt:
- Add USE for:
xrandr, tablet, tools, glib, mng and fontconfig.
- Get ride of forced -g flag (thanks to @selk).
- Make hiddenvisibility a choice.
- Do not dlopen libGL.
- Less debug if building without debug.
- Build sqlite3 plugin too, if build with sqlite.
- Add -xshape -xkb -xcursor for building.
- Fix dependencies and polish.
General:
- DrKonqi: Add USE for hwlib.
- KControl: Add USE for svg.
- TDM: Add USE for svg and hwlib.
- KSMServer: Add USE for hwlib, remove upower.
- Make hwlib USE flag default option.
- Fix dependencies in general.
- Remove avahi USE mask, because fixed.
TDELibs:
- Add USE for:
svg, pkcs11, elficons, malloc, udisks,
ssl, udevil, systemd, debug, pcre, idn.
- Use shared memory for pixmap loading.
- Depend on ca-certificates only with ssl USE.
- Ebuild polish and cleanup.
- Messages for informations.
- Remove redundant multilib eclass.
- Add back old_udisks, udisks and udevil USE.
Signed-off-by: Chris <xchrisx@uber.space>
Diffstat (limited to 'trinity-base/kcontrol')
-rw-r--r-- | trinity-base/kcontrol/kcontrol-9999.ebuild | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/trinity-base/kcontrol/kcontrol-9999.ebuild b/trinity-base/kcontrol/kcontrol-9999.ebuild index 285794c6..1c868560 100644 --- a/trinity-base/kcontrol/kcontrol-9999.ebuild +++ b/trinity-base/kcontrol/kcontrol-9999.ebuild @@ -9,7 +9,7 @@ inherit trinity-meta-2 DESCRIPTION="The Trinity Control Center" -IUSE="samba logitech-mouse ieee1394 hwlib +xrandr " +IUSE="samba logitech-mouse ieee1394 +svg +hwlib +xrandr " DEPEND="x11-libs/libX11 x11-libs/libXrender @@ -17,7 +17,6 @@ DEPEND="x11-libs/libX11 samba? ( net-fs/samba ) logitech-mouse? ( virtual/libusb:0 ) ieee1394? ( sys-libs/libraw1394 ) - xrandr? ( x11-libs/libXrandr ) =trinity-base/tdelibs-${PV}[xrandr?] =trinity-base/libkonq-${PV} =trinity-base/kicker-${PV}" @@ -28,7 +27,8 @@ RDEPEND="${DEPEND} =trinity-base/tdebase-data-${PV} =trinity-base/tdesu-${PV} =trinity-base/khelpcenter-${PV} - =trinity-base/khotkeys-${PV}" + =trinity-base/khotkeys-${PV} + svg? ( =media-libs/libart_lgpl-${PV} )" TSM_EXTRACT_ALSO="kicker/ twin/ kdesktop/ klipper/ kxkb/" @@ -42,6 +42,7 @@ src_configure() { -DWITH_LIBRAW1394="$(usex ieee1394)" -DWITH_XRANDR="$(usex xrandr)" -DWITH_TDEHWLIB="$(usex hwlib)" + -DWITH_LIBART="$(usex svg)" -DXSCREENSAVER_DIR="/usr/$(get_libdir)/misc/xscreensaver" ) |