summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-03-29 01:19:25 +0000
committerMike Frysinger <vapier@gentoo.org>2004-03-29 01:19:25 +0000
commit34ec5d491dc415bbbe2a9ce41c3fce3ac678e9b5 (patch)
tree457d7daa4d487cd52121eada5061858438f1e2a7 /net-misc/icecast
parentold (diff)
downloadhistorical-34ec5d491dc415bbbe2a9ce41c3fce3ac678e9b5.tar.gz
historical-34ec5d491dc415bbbe2a9ce41c3fce3ac678e9b5.tar.bz2
historical-34ec5d491dc415bbbe2a9ce41c3fce3ac678e9b5.zip
move from net-ftp #45968
Diffstat (limited to 'net-misc/icecast')
-rw-r--r--net-misc/icecast/icecast-2.0.0.ebuild17
1 files changed, 5 insertions, 12 deletions
diff --git a/net-misc/icecast/icecast-2.0.0.ebuild b/net-misc/icecast/icecast-2.0.0.ebuild
index fe4b6364bd8d..ad4fbd57c325 100644
--- a/net-misc/icecast/icecast-2.0.0.ebuild
+++ b/net-misc/icecast/icecast-2.0.0.ebuild
@@ -1,8 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/icecast/icecast-2.0.0.ebuild,v 1.4 2004/03/26 21:44:44 eradicator Exp $
-
-IUSE="oggvorbis curl"
+# $Header: /var/cvsroot/gentoo-x86/net-misc/icecast/icecast-2.0.0.ebuild,v 1.5 2004/03/29 01:17:08 vapier Exp $
inherit eutils
@@ -10,24 +8,22 @@ DESCRIPTION="An opensource alternative to shoutcast that supports mp3 and ogg st
HOMEPAGE="http://www.icecast.org/"
SRC_URI="http://www.icecast.org/files/${P}.tar.gz"
-SLOT="0"
LICENSE="GPL-2"
+SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~alpha ~amd64"
+IUSE="oggvorbis curl"
DEPEND="virtual/glibc
dev-libs/libxml2
dev-libs/libxslt
oggvorbis? ( >=media-libs/libvorbis-1.0
>=media-libs/libogg-1.0 )
- curl? ( net-ftp/curl )"
+ curl? ( net-misc/curl )"
src_compile() {
- local myconf="--with-gnu-ld"
-
+ local myconf=""
use oggvorbis || myconf="${myconf} --without-ogg --without-vorbis"
-
use curl || myconf="${myconf} --disable-yp"
-
econf \
--sysconfdir=/etc/icecast2 \
${myconf} || die "configure failed"
@@ -36,10 +32,7 @@ src_compile() {
}
src_install() {
- export CONFIG_PROTECT="${CONFIG_PROTECT}:/etc/icecast2"
make DESTDIR=${D} install || die "make install failed"
-
dodoc AUTHORS README TODO HACKING NEWS
-
rm -rf ${D}usr/share/doc/icecast
}