diff options
Diffstat (limited to 'trinity-base/twin')
-rw-r--r-- | trinity-base/twin/Manifest | 1 | ||||
-rw-r--r-- | trinity-base/twin/twin-14.1.0.ebuild | 52 |
2 files changed, 0 insertions, 53 deletions
diff --git a/trinity-base/twin/Manifest b/trinity-base/twin/Manifest index 946d63c0..623b3cf4 100644 --- a/trinity-base/twin/Manifest +++ b/trinity-base/twin/Manifest @@ -1,2 +1 @@ -DIST tdebase-trinity-14.1.0.tar.xz 30722632 BLAKE2B 1f4b87be37730aaa93fc579c130d7af7c408d20512ff8642d8313abaa7ccf6a012c8b52c595641e8ff820f709d68471224f2ceb1f898769b36e386345924b948 SHA512 8fcbb5d4bbaefc9acafa5d1926d6f22b1c087a7af63f0d9e2438c95730e82e6d6e9555afdf336bd01c296adedef5665c571d00c6738d071ed069243d47f30674 DIST tdebase-trinity-14.1.1.tar.xz 30746484 BLAKE2B 4d2fdd9e3f5007c7482e938badad381a3e314b458b262dd346c05c91a9a4b974d8f1244152b833a34f7edad246bd4a8af0e054279a1556cebac6319a1a011a09 SHA512 d733f20719a0c9a949540e95f4d60fe03e096efbd7ac54187c5ee9b9f9b644318ee2dd9c8fd0d2e6eee660f7a7ad827e66bc06fb9a36c9e56e3ae16bdd47910c diff --git a/trinity-base/twin/twin-14.1.0.ebuild b/trinity-base/twin/twin-14.1.0.ebuild deleted file mode 100644 index eacf7d6c..00000000 --- a/trinity-base/twin/twin-14.1.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Copyright 2020-2023 The Trinity Desktop Project -# Distributed under the terms of the GNU General Public License v2 - -EAPI="8" - -TRINITY_MODULE_NAME="tdebase" -TRINITY_MODULE_TYPE="core" -inherit trinity-meta-2 - -DESCRIPTION="Trinity window manager" -if [[ ${PV} != *9999* ]] ; then - KEYWORDS="~amd64 ~arm64 ~x86" -fi -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() { - local 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 -} |