diff options
author | ormorph <roma251078@mail.ru> | 2023-10-27 13:50:17 +0300 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2023-10-29 10:05:05 +0100 |
commit | 271fc0de62480ffa8a1525e07b833079c96ca6bd (patch) | |
tree | fe24a566266198330ff71db390413fdf7a9d63af /trinity-base/arts/arts-14.1.1.ebuild | |
parent | 8e955e3a507fd32d4b98df0893bb2dfa83b48eb8 (diff) | |
download | tde-packaging-gentoo-271fc0de62480ffa8a1525e07b833079c96ca6bd.tar.gz tde-packaging-gentoo-271fc0de62480ffa8a1525e07b833079c96ca6bd.zip |
Release R14.1.1 added
Signed-off-by: ormorph <roma251078@mail.ru>
(cherry picked from commit 18d39ed9f062321b596258a9137f10b3e93b71e0)
Diffstat (limited to 'trinity-base/arts/arts-14.1.1.ebuild')
-rw-r--r-- | trinity-base/arts/arts-14.1.1.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/trinity-base/arts/arts-14.1.1.ebuild b/trinity-base/arts/arts-14.1.1.ebuild new file mode 100644 index 00000000..489a99ce --- /dev/null +++ b/trinity-base/arts/arts-14.1.1.ebuild @@ -0,0 +1,60 @@ +# 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 +} |