diff options
author | E. Liddell <ejlddll@warpmail.net> | 2020-11-21 01:28:00 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-11-21 01:28:05 +0100 |
commit | 7ed6b42adb46d6e23c9e523d49d4ed0b4bc04aaf (patch) | |
tree | 26f85c5a67ded1e593de78847881110461d84e52 /trinity-base/twin/twin-14.0.6.ebuild | |
parent | d68f1e223da71c1b3d013713f24d78cedaef3e95 (diff) | |
download | tde-packaging-gentoo-7ed6b42adb46d6e23c9e523d49d4ed0b4bc04aaf.tar.gz tde-packaging-gentoo-7ed6b42adb46d6e23c9e523d49d4ed0b4bc04aaf.zip |
14.0.8 ebuilds for tdebase, tdeartwork, tdeutils, and their dependencies (also 14.0.7 ebuild for kworldclock), and removal of obsolete 14.0.6 ebuilds.
Also removed all references to ispell (no longer in main portage tree, aspell provides same functionality) and streamlined spelling flags in general.
Signed-off-by: E. Liddell <ejlddll@warpmail.net>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'trinity-base/twin/twin-14.0.6.ebuild')
-rw-r--r-- | trinity-base/twin/twin-14.0.6.ebuild | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/trinity-base/twin/twin-14.0.6.ebuild b/trinity-base/twin/twin-14.0.6.ebuild deleted file mode 100644 index 8b7021a1..00000000 --- a/trinity-base/twin/twin-14.0.6.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Copyright 2020 The Trinity Desktop Project -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" -TRINITY_MODULE_NAME="tdebase" - -inherit trinity-meta-2 eutils - -DESCRIPTION="Trinity window manager" -KEYWORDS="~amd64 ~x86" -IUSE="xcomposite xrandr xinerama +libconfig +pcre opengl" - -DEPEND="x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXrender - xcomposite? ( x11-libs/libXcomposite ) - xinerama? ( x11-base/xorg-proto ) - xrandr? ( x11-libs/libXrandr ) - libconfig? ( dev-libs/libconfig ) - opengl? ( virtual/opengl ) - pcre? ( dev-libs/libpcre[jit] )" -RDEPEND="${DEPEND}" - -src_configure() { - mycmakeargs=( - -DWITH_XCOMPOSITE="$(usex xcomposite)" - -DWITH_XFIXES="$(usex xcomposite)" - -DWITH_XRENDER="$(usex xcomposite)" - -DWITH_OPENGL="$(usex opengl)" - -DWITH_XRANDR="$(usex xrandr)" - -DWITH_LIBCONFIG="$(usex libconfig)" - -DWITH_PCRE="$(usex pcre)" - -DWITH_XINERAMA="$(usex xinerama)" - ) - - trinity-meta-2_src_configure -} - -pkg_postinst() { - if ! use xcomposite; then - for flag in xrandr xinerama libconfig pcre opengl; do - use $flag && \ - ewarn "USE=\"$flag\" is passed, but it doesn't change anything due to" && \ - ewarn "$flag support in ${P} take effect only if composite is enabled." - done - - fi -} |