diff options
author | Alexis Ballier <aballier@gentoo.org> | 2007-03-31 12:03:02 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2007-03-31 12:03:02 +0000 |
commit | 168a29b9a5bcd3af6780c401bf4a9538fb2c56f2 (patch) | |
tree | 30cb10c596264781f9d96a53434484275563a2c7 /media-sound/ezstream/ezstream-0.4.0.ebuild | |
parent | ezstream 0.4 taglib useflag (diff) | |
download | gentoo-2-168a29b9a5bcd3af6780c401bf4a9538fb2c56f2.tar.gz gentoo-2-168a29b9a5bcd3af6780c401bf4a9538fb2c56f2.tar.bz2 gentoo-2-168a29b9a5bcd3af6780c401bf4a9538fb2c56f2.zip |
Version bump, bug #169791
(Portage version: 2.1.2.3)
Diffstat (limited to 'media-sound/ezstream/ezstream-0.4.0.ebuild')
-rw-r--r-- | media-sound/ezstream/ezstream-0.4.0.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-sound/ezstream/ezstream-0.4.0.ebuild b/media-sound/ezstream/ezstream-0.4.0.ebuild new file mode 100644 index 000000000000..6d58351c48d5 --- /dev/null +++ b/media-sound/ezstream/ezstream-0.4.0.ebuild @@ -0,0 +1,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 +} |