summaryrefslogtreecommitdiffstats
path: root/trinity-base/twin/twin-14.0.12.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'trinity-base/twin/twin-14.0.12.ebuild')
-rw-r--r--trinity-base/twin/twin-14.0.12.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/trinity-base/twin/twin-14.0.12.ebuild b/trinity-base/twin/twin-14.0.12.ebuild
deleted file mode 100644
index c19b88de..00000000
--- a/trinity-base/twin/twin-14.0.12.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Copyright 2022 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"
-TSM_EXTRACT_ALSO="translations/"
-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
-}