blob: af1bf41d55d751e678b0d5f02a758a6aa66665e0 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ezstream-0.5.3.ebuild,v 1.2 2008/01/13 18:49:03 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/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="taglib"
COMMON_DEPEND="media-libs/libvorbis
media-libs/libogg
>=media-libs/libshout-2.2
media-libs/libtheora
dev-libs/libxml2
taglib? ( media-libs/taglib )"
RDEPEND="${COMMON_DEPEND}
net-misc/icecast"
DEPEND="${COMMON_DEPEND}
dev-util/pkgconfig"
src_compile() {
econf --enable-examplesdir="/usr/share/doc/${PF}/examples" \
--docdir="/usr/share/doc/${PF}" $(use_with taglib)
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
rm -f "${D}"/usr/share/doc/${PF}/COPYING
dodoc ChangeLog
prepalldocs
}
|