blob: a2a8c1500450e3f23c5e4b6b9f7c8b8ad8e93817 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools desktop xdg
DESCRIPTION="Multiple Streaming Engine, an icecast source streamer"
HOMEPAGE="https://www.dyne.org/software/muse/"
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? ( virtual/jack )
ncurses? ( sys-libs/ncurses:0= )
portaudio? ( media-libs/portaudio )"
DEPEND="${RDEPEND}"
BDEPEND="
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)
}
src_install() {
default
make_desktop_entry /usr/bin/muse "MuSE"
}
|