summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2004-10-10 19:05:05 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2004-10-10 19:05:05 +0000
commit3f4616925b088d0ef873d2c8bac33465c75a9ebd (patch)
tree9d157e9dfdbc2e89b5a95eca4fe44432d0137128 /net-misc
parentR-2.0.0 testing, R-1.9.0-r1 stable, R-1.8.1 obsolete (Manifest recommit) (diff)
downloadgentoo-2-3f4616925b088d0ef873d2c8bac33465c75a9ebd.tar.gz
gentoo-2-3f4616925b088d0ef873d2c8bac33465c75a9ebd.tar.bz2
gentoo-2-3f4616925b088d0ef873d2c8bac33465c75a9ebd.zip
Added more documentation.
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/icecast/ChangeLog6
-rw-r--r--net-misc/icecast/icecast-2.0.2.ebuild20
2 files changed, 15 insertions, 11 deletions
diff --git a/net-misc/icecast/ChangeLog b/net-misc/icecast/ChangeLog
index f39b255d6250..a2e2455cd06e 100644
--- a/net-misc/icecast/ChangeLog
+++ b/net-misc/icecast/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/icecast
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/icecast/ChangeLog,v 1.32 2004/10/03 21:06:36 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/icecast/ChangeLog,v 1.33 2004/10/10 19:05:05 eradicator Exp $
+
+ 10 Oct 2004; Jeremy Huddleston <eradicator@gentoo.org>
+ icecast-2.0.2.ebuild:
+ Added more documentation.
03 Oct 2004; Bryan Østergaard <kloeri@gentoo.org> icecast-2.0.1-r1.ebuild:
Stable on alpha.
diff --git a/net-misc/icecast/icecast-2.0.2.ebuild b/net-misc/icecast/icecast-2.0.2.ebuild
index 56596d2894d3..7f501a409142 100644
--- a/net-misc/icecast/icecast-2.0.2.ebuild
+++ b/net-misc/icecast/icecast-2.0.2.ebuild
@@ -1,6 +1,8 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/icecast/icecast-2.0.2.ebuild,v 1.1 2004/09/30 04:23:41 chriswhite Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/icecast/icecast-2.0.2.ebuild,v 1.2 2004/10/10 19:05:05 eradicator Exp $
+
+IUSE="curl doc"
inherit eutils
@@ -11,13 +13,10 @@ SRC_URI="http://svn.xiph.org/releases/icecast/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64 ~ppc64"
-IUSE="curl"
-DEPEND="virtual/libc
- dev-libs/libxml2
- dev-libs/libxslt
- >=media-libs/libvorbis-1.0
- >=media-libs/libogg-1.0
+DEPEND="dev-libs/libxslt
+ media-libs/libogg
+ media-libs/libvorbis
curl? ( net-misc/curl )"
src_compile() {
@@ -31,11 +30,12 @@ src_compile() {
}
src_install() {
- make DESTDIR=${D} install || die "make install failed"
- dodoc AUTHORS README TODO HACKING NEWS
+ make DESTDIR="${D}" install || die "make install failed"
+ dodoc AUTHORS README TODO HACKING NEWS conf/icecast.xml.dist
+ use doc && dohtml -A chm,hhc,hhp doc/*
exeinto /etc/init.d
newexe ${FILESDIR}/init.d.icecast icecast
- rm -rf ${D}usr/share/doc/icecast
+ rm -rf ${D}/usr/share/doc/icecast
}