blob: d6671ee8f7067c595e80c897eeaad2d20bf189c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# 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="tdemultimedia"
TRINITY_SUBMODULE="arts mpeglib mpeglib_artsplug"
inherit trinity-meta-2
DESCRIPTION="The aRts pipeline builder and other tools"
if [[ ${PV} != *9999* ]] ; then
KEYWORDS="~amd64 ~x86"
fi
IUSE="akode alsa audiofile mpeg vorbis xine"
DEPEND="
~trinity-base/arts-${PV}
akode? ( ~media-libs/akode-${PV} )
alsa? ( media-libs/alsa-lib )
audiofile? ( media-libs/audiofile )
vorbis? ( media-libs/libvorbis )
xine? ( media-libs/xine-lib )
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DWITH_ALSA="$(usex alsa)"
-DWITH_ARTS_AKODE="$(usex akode)"
-DWITH_ARTS_AUDIOFILE="$(usex audiofile)"
-DWITH_ARTS_MPEGLIB="$(usex mpeg)"
-DBUILD_MPEGLIB="$(usex mpeg)"
-DWITH_ARTS_XINE="$(usex xine)"
-DWITH_VORBIS="$(usex vorbis)"
)
trinity-meta-2_src_configure
}
|