blob: dbf8f696844fa7d3ae1503087b33f54208930f4e (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/radiomixer/radiomixer-1.1_rc1-r1.ebuild,v 1.3 2007/12/26 16:50:08 cla Exp $
inherit kde-functions eutils
DESCRIPTION="Live Radio production software written by and used for open-radio.org"
HOMEPAGE="http://sourceforge.net/projects/radiomixer"
SRC_URI="mirror://sourceforge/radiomixer/${PN}-1.1RC1.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86"
IUSE="alsa debug hwmixer jack mad vorbis"
DEPEND="media-libs/libsamplerate
alsa? ( media-libs/alsa-lib )
jack? ( media-sound/jack-audio-connection-kit )
mad? ( media-libs/libmad )
vorbis? ( media-libs/libvorbis )"
need-qt 3.3
S=${WORKDIR}/${PN}-1.1RC1
pkg_setup() {
if ! use alsa && ! use jack ; then
eerror
eerror "Neither alsa nor jack USE flag is set, thus no"
eerror "no sound support would be built."
eerror
eerror "Please at least set either alsa or jack USE flag."
eerror
die "Adjust your USE flags"
fi
if ! use jack && ! use mad && ! use vorbis ; then
eerror
eerror "You need to set at least one of the following"
eerror "USE flags to be able to mix / play some music:"
eerror
eerror "jack, mad, vorbis"
eerror
die "Adjust your USE flags"
fi
if ! use mad && ! use vorbis ; then
ewarn
ewarn "As you didn't set vorbis and mad USE flag,"
ewarn "you would only be able to mix channels but"
ewarn "cannot play any files."
ewarn
ewarn "Giving you 5 seconds to think about it"
ewarn
epause 5
echo
fi
elog
elog "Jack mode is recommended by upstream."
elog
}
src_compile() {
local myconf
# broken without
myconf="${myconf} --enable-songdb"
if ! use alsa ; then
myconf="--disable-alsa"
fi
if use hwmixer ; then
myconf="${myconf} --enable-hwmixer"
fi
if ! use jack ; then
myconf="${myconf} --disable-jackd"
fi
if ! use mad ; then
myconf="${myconf} --disable-mad"
fi
if ! use vorbis ; then
myconf="${myconf} --disable-vorbis"
fi
if use debug ; then
myconf="${myconf} --debug"
fi
# Ma5ke sure we use the right qt version
PATH=${QTDIR}/bin:${PATH}
LD_LIBRARY_PATH=${QTDIR}/lib:${LD_LIBRARY_PATH}
DYLD_LIBRARY_PATH=${QTDIR}/lib:${DYLD_LIBRARY_PATH}
export QTDIR PATH LD_LIBRARY_PATH DYLD_LIBRARY_PATH
einfo "Using QTDIR: '$QTDIR'."
# qcm, not autotools!
./configure ${myconf}
emake || die "emake failed"
}
src_install() {
dobin bin/radiomixer || die "dobin failed"
if use jack; then
if use mad || use vorbis; then
insinto /usr/share/doc/${PF}
doins "${FILESDIR}"/radiomixer{rc,-patchbay.xml}
fi
fi
}
pkg_postinst() {
if use jack; then
if use mad || use vorbis; then
elog "In your system docdir there is a sample config. Just stick"
elog "it into ~/.qt of the user you run it as, and take a look at"
elog "the sample patchbay file for qjackctl on how to connect it"
elog "in jack"
fi
fi
}
|