diff options
author | Chris <xchrisx@uber.space> | 2020-01-08 19:09:38 +0100 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2020-01-18 16:33:02 +0000 |
commit | 13f3b6432f125802f4fee3827d2b0e882a0a8dfe (patch) | |
tree | 49224d9604584a2ad827891fd6667cbf412a6385 /trinity-base/ksplashml | |
parent | e05ee6fdde9c2c4b00dbe2c4e5a82da8141a64e2 (diff) | |
download | tde-packaging-gentoo-13f3b6432f125802f4fee3827d2b0e882a0a8dfe.tar.gz tde-packaging-gentoo-13f3b6432f125802f4fee3827d2b0e882a0a8dfe.zip |
Live ebuilds: Port to EAPI7 and cleanup - Round 3.
This time: kpager, krootbacking, ksplashml, kstart,
ksystraycmd, kxkb, nsplugins, tdebase-starttde,
tdedebugdialog, tdeeject, tdepasswd, tdeprint,
tdescreensaver, tdesu and tqt3integration
Signed-off-by: Chris <xchrisx@uber.space>
Diffstat (limited to 'trinity-base/ksplashml')
-rw-r--r-- | trinity-base/ksplashml/ksplashml-9999.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/trinity-base/ksplashml/ksplashml-9999.ebuild b/trinity-base/ksplashml/ksplashml-9999.ebuild index ea3bd4e3..9aa49363 100644 --- a/trinity-base/ksplashml/ksplashml-9999.ebuild +++ b/trinity-base/ksplashml/ksplashml-9999.ebuild @@ -1,13 +1,14 @@ # 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="Trinity splashscreen framework (of Trinity itself, not of individual apps)" -KEYWORDS= + IUSE="xinerama" DEPEND="x11-libs/libXcursor @@ -16,8 +17,8 @@ RDEPEND="$DEPEND" src_configure() { mycmakeargs=( - $(cmake-utils_use_with xinerama XINERAMA) + -DWITH_XINERAMA="$(usex xinerama)" ) - trinity-meta_src_configure + trinity-meta-2_src_configure } |