summaryrefslogtreecommitdiffstats
path: root/trinity-base/arts
diff options
context:
space:
mode:
authorormorph <roma251078@mail.ru>2024-04-17 20:59:46 +0300
committerormorph <roma251078@mail.ru>2024-04-17 20:59:46 +0300
commit4b3f0a054757e31efd942db76c6f28e4c26433dd (patch)
tree742360a065f0776f4bf6bd0eae51da15d0d975a2 /trinity-base/arts
parent2769940be476aca58d96f626ecab898409ad8b48 (diff)
downloadtde-packaging-gentoo-4b3f0a054757e31efd942db76c6f28e4c26433dd.tar.gz
tde-packaging-gentoo-4b3f0a054757e31efd942db76c6f28e4c26433dd.zip
Removing version TDE-14.1.0
Signed-off-by: ormorph <roma251078@mail.ru>
Diffstat (limited to 'trinity-base/arts')
-rw-r--r--trinity-base/arts/Manifest1
-rw-r--r--trinity-base/arts/arts-14.1.0.ebuild60
2 files changed, 0 insertions, 61 deletions
diff --git a/trinity-base/arts/Manifest b/trinity-base/arts/Manifest
index 5ba02d86..14b820d9 100644
--- a/trinity-base/arts/Manifest
+++ b/trinity-base/arts/Manifest
@@ -1,2 +1 @@
-DIST arts-trinity-14.1.0.tar.xz 662148 BLAKE2B e06639434352a8d6d32b63f76c1b5bdf7e29f42bee1c1acd92d5024eb4afb24762c445e206c487c40dc9f5cfaa4a00ca1126aa16463c293542be1f9e0034268a SHA512 c9bb8deb916c5b523f14693fbef5dad0c107480a503c53f92007460ab125bcf94bd7397438085ed25dae56cdd7543b5c4f080e30842e4a515e0bc48618395769
DIST arts-trinity-14.1.1.tar.xz 657296 BLAKE2B 1e99b6e2215223145030828560feb2f37d2f004a7800dc4bc15553853241a7a8258db9002689d388fc83436d5511c374e51655a68f05a70717e52e617ca947c3 SHA512 6e6bd9b6e9a5b95ad0e16d50b5a55f72894595c9916718ddf2108b038218ff86ac8c084260d1e544a2b602544cdb5b5e944a4371d7196bae25f9543d18f74179
diff --git a/trinity-base/arts/arts-14.1.0.ebuild b/trinity-base/arts/arts-14.1.0.ebuild
deleted file mode 100644
index bfb09141..00000000
--- a/trinity-base/arts/arts-14.1.0.ebuild
+++ /dev/null
@@ -1,60 +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_TYPE="dependencies"
-TRINITY_MODULE_NAME="arts"
-inherit trinity-base-2
-
-DESCRIPTION="aRts, the Trinity sound (and all-around multimedia) server/output manager"
-HOMEPAGE="https://trinitydesktop.org/"
-
-LICENSE="|| ( GPL-2 GPL-3 )"
-
-IUSE="alsa artswrappersuid jack mp3 vorbis"
-if [[ ${PV} != *9999* ]] ; then
- KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-SLOT="14"
-
-DEPEND="~dev-tqt/tqtinterface-${PV}
- dev-libs/glib
- media-libs/audiofile
- mp3? ( media-libs/libmad )
- alsa? ( media-libs/alsa-lib )
- vorbis? ( media-libs/libogg media-libs/libvorbis )
- jack? ( virtual/jack )"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_AUDIOFILE=ON
- -DWITH_MAD="$(usex mp3)"
- -DWITH_ALSA="$(usex alsa)"
- -DWITH_VORBIS="$(usex vorbis)"
- -DWITH_JACK="$(usex jack)"
- -DWITH_ESOUND=OFF
- -DWITH_SNDIO=OFF
- )
-
- trinity-base-2_src_configure
-}
-
-src_install() {
- trinity-base-2_src_install
-
- # Used for realtime priority, but off by default as it is a security hazard
- use artswrappersuid && chmod u+s "${D}/${TDEDIR}/bin/artswrapper"
-}
-
-pkg_postinst() {
- if ! use artswrappersuid ; then
- elog "Run chmod u+s ${TDEDIR}/bin/artswrapper to let artsd use realtime"
- elog "priority and so avoid possible skips in sound. However, on untrusted systems"
- elog "this creates the possibility of a DoS attack that'll use 100% cpu at realtime"
- elog "priority, and so is off by default. See Gentoo bug #7883."
- elog "Or, you can set the artswrappersuid USE flag to make the ebuild do this."
- fi
-}