blob: fe819a660f01e461da168d8a05f766ef7dfd3585 (
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
|
# Copyright 1999-2009 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.3 2009/07/23 08:15:50 ssuominen Exp $
EAPI=2
inherit eutils
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_configure() {
econf \
--enable-examplesdir=/usr/share/doc/${PF}/examples \
--docdir=/usr/share/doc/${PF} \
$(use_with taglib)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newinitd "${FILESDIR}"/${PN}.initd ${PN} || die "newinitd failed"
newconfd "${FILESDIR}"/${PN}.confd ${PN} || die "newconfd failed"
rm -f "${D}"/usr/share/doc/${PF}/COPYING
dodoc ChangeLog
prepalldocs
}
|