blob: 6d58351c48d534a56ab44b545ade3a14c0da8f8e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ezstream-0.4.0.ebuild,v 1.1 2007/03/31 12:03:02 aballier Exp $
DESCRIPTION="Enables you to stream mp3 or vorbis files to an icecast server without reencoding"
HOMEPAGE="http://www.icecast.org/ezstream.php"
SRC_URI="http://downloads.xiph.org/releases/ezstream/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="taglib"
DEPEND="media-libs/libvorbis
media-libs/libogg
>=media-libs/libshout-2.1
media-libs/libtheora
dev-libs/libxml2
taglib? ( media-libs/taglib )"
RDEPEND="${DEPEND}
net-misc/icecast"
src_compile() {
#we'll take care of these with dodoc
sed -i -e "s/COPYING NEWS README//" Makefile.in
sed -i -e "s/examples//" Makefile.in
econf $(use_with taglib) || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc README NEWS
docinto examples
dodoc examples/ezstream*
dodoc examples/*sh
}
|