blob: 4647c7709a28d92b97c73e585f81399cceecbb32 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ices/ices-0.4.ebuild,v 1.2 2004/08/31 07:39:32 pyrania Exp $
IUSE="oggvorbis perl python faad flac"
DESCRIPTION="icecast MP3 streaming client. supports on the fly re-encoding"
SRC_URI="http://svn.xiph.org/releases/ices/${P}.tar.gz"
HOMEPAGE="http://www.icecast.org"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc"
DEPEND="media-sound/lame
dev-libs/libxml2
>=media-libs/libshout-2.0
faad? >=media-libs/faad2-2.0
flac? >=media-libs/flac-1.1.0
oggvorbis? ( >=media-libs/libogg-1.0
>=media-libs/libvorbis-1.0 )"
src_compile ()
{
local myconf="--with-gnu-ld"
use python && myconf="${myconf} --with-python"
use perl && myconf=${myconf}" --with-perl"
use oggvorbis && myconf="${myconf} --with-vorbis"
econf \
--sysconfdir=/etc/ices \
--with-lame \
--with-docdir=/usr/share/doc/${P}/html \
${myconf} || die "configure failed"
emake || die "make failed"
}
src_install ()
{
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS BUGS NEWS README INSTALL README.playlist TODO
}
|