diff options
author | Jan Brinkmann <luckyduck@gentoo.org> | 2005-05-19 17:25:21 +0000 |
---|---|---|
committer | Jan Brinkmann <luckyduck@gentoo.org> | 2005-05-19 17:25:21 +0000 |
commit | fe62549760cda842c74977601ff3fa8eed873600 (patch) | |
tree | 653952964806e13284991689a0bb474b29887c1d /media-sound/ezstream/ezstream-0.2.0.ebuild | |
parent | pam 'include' directive, instead of Redhat's pam_stack (diff) | |
download | gentoo-2-fe62549760cda842c74977601ff3fa8eed873600.tar.gz gentoo-2-fe62549760cda842c74977601ff3fa8eed873600.tar.bz2 gentoo-2-fe62549760cda842c74977601ff3fa8eed873600.zip |
Initial import, ebuild based on the contributions by Peter Ton <peterton@hotpop.com> and Cliff Rowley. Fixes #83647
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'media-sound/ezstream/ezstream-0.2.0.ebuild')
-rw-r--r-- | media-sound/ezstream/ezstream-0.2.0.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/media-sound/ezstream/ezstream-0.2.0.ebuild b/media-sound/ezstream/ezstream-0.2.0.ebuild new file mode 100644 index 000000000000..7a0f2762ad28 --- /dev/null +++ b/media-sound/ezstream/ezstream-0.2.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ezstream/ezstream-0.2.0.ebuild,v 1.1 2005/05/19 17:25:21 luckyduck 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="~x86 ~amd64" +IUSE="" + +DEPEND="media-libs/libvorbis + media-libs/libogg + >=media-libs/libshout-2.1 + media-libs/libtheora + dev-libs/libxml2" +RDEPEND="net-misc/icecast" + +src_install() { + make DESTDIR=${D} install || die "make install failed" + dodoc AUTHORS README + docinto conf; dodoc conf/ezstream* +} |