blob: 97abfad1bf260e602ef23d7e5fbbc8550ac1147a (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/muse/muse-0.9.1.ebuild,v 1.6 2007/07/11 19:30:24 mr_bones_ Exp $
inherit eutils
MY_P=${PN/muse/MuSE}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Multiple Streaming Engine, an icecast source streamer"
SRC_URI="ftp://ftp.dyne.org/muse/releases/${MY_P}.tar.gz"
HOMEPAGE="http://muse.dyne.org/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc sparc x86 amd64"
IUSE="ncurses gtk debug"
DEPEND="media-sound/lame
media-libs/libvorbis
sys-libs/zlib
sys-apps/sed
ncurses? ( sys-libs/ncurses )
gtk? ( =x11-libs/gtk+-1*
>=dev-libs/glib-1 )"
RESTRICT="mirror"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-include.patch
epatch ${FILESDIR}/${P}-miscfixes.patch
}
src_compile() {
econf \
$(use_enable debug) \
$(use_with gtk x) \
$(use_with ncurses rubik) \
|| die "econf failed"
emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS} -fpermissive" \
|| die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
rm -rf ${D}/usr/doc
dodoc AUTHORS ChangeLog NEWS README TODO KNOWN-BUGS USAGE
}
pkg_postinst() {
elog
elog "You may want to have a look at /usr/share/doc/${PF}/README.gz"
elog "for more info."
elog
}
|