blob: 89771e2277484cfe9e8dbe52a7f32fbc2ee8a1e9 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DESCRIPTION="Multiple Streaming Engine, an icecast source streamer"
HOMEPAGE="http://muse.dyne.org"
SRC_URI="https://dev.gentoo.org/~soap/distfiles/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc gtk jack ncurses portaudio"
RDEPEND="media-sound/lame
media-libs/libvorbis
media-libs/libsndfile
media-libs/libogg
media-libs/libshout
media-libs/libsamplerate
gtk? ( x11-libs/gtk+:2 )
jack? ( media-sound/jack-audio-connection-kit )
ncurses? ( sys-libs/ncurses:0= )
portaudio? ( media-libs/portaudio )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
PATCHES=(
"${FILESDIR}"/${PN}-0.9.2_p20161002-fix-build-system.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
--without-dmalloc \
--disable-profiling \
--disable-lubrify \
$(use_enable gtk gtk2) \
$(use_enable jack) \
$(use_enable ncurses) \
$(use_enable portaudio) \
$(use_enable doc)
}
|