diff options
author | Martin Holzer <mholzer@gentoo.org> | 2004-05-13 16:24:18 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2004-05-13 16:24:18 +0000 |
commit | b631cfc881ef7fab97e2f05edf39ca88b38d5ea7 (patch) | |
tree | fafddd5b40f1630ea2265f25477f414a7127384a | |
parent | (Manifest recommit) (diff) | |
download | gentoo-2-b631cfc881ef7fab97e2f05edf39ca88b38d5ea7.tar.gz gentoo-2-b631cfc881ef7fab97e2f05edf39ca88b38d5ea7.tar.bz2 gentoo-2-b631cfc881ef7fab97e2f05edf39ca88b38d5ea7.zip |
This is a Security Release. See 50935
-rw-r--r-- | net-misc/icecast/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/icecast/Manifest | 8 | ||||
-rw-r--r-- | net-misc/icecast/files/digest-icecast-2.0.1 | 1 | ||||
-rw-r--r-- | net-misc/icecast/icecast-2.0.1.ebuild | 37 |
4 files changed, 49 insertions, 4 deletions
diff --git a/net-misc/icecast/ChangeLog b/net-misc/icecast/ChangeLog index 87b2014cea43..ef1c4269a254 100644 --- a/net-misc/icecast/ChangeLog +++ b/net-misc/icecast/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/icecast # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/icecast/ChangeLog,v 1.22 2004/04/23 03:56:56 absinthe Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/icecast/ChangeLog,v 1.23 2004/05/13 16:24:18 mholzer Exp $ + +*icecast-2.0.1 (13 May 2004) + + 13 May 2004; Martin Holzer <mholzer@gentoo.org> icecast-2.0.1.ebuild: + This is a Security Release. See 50935 22 Apr 2004; Dylan Carlson <absinthe@gentoo.org> icecast-2.0.0.ebuild: Marked stable on amd64. diff --git a/net-misc/icecast/Manifest b/net-misc/icecast/Manifest index 9dba64b0db9a..d69abd49da18 100644 --- a/net-misc/icecast/Manifest +++ b/net-misc/icecast/Manifest @@ -1,8 +1,10 @@ +MD5 96ea8b30b8118ecbc66c6c14306a8a82 icecast-2.0.1.ebuild 974 +MD5 d0d7ea03e238a808414b4426394c100f metadata.xml 221 MD5 43603989f828fbe8177b4c4ffb915dd0 ChangeLog 3300 -MD5 6a7aefce4435684aa40c01e190ef307d icecast-1.3.12-r1.ebuild 1425 MD5 96ea8b30b8118ecbc66c6c14306a8a82 icecast-2.0.0.ebuild 974 -MD5 d0d7ea03e238a808414b4426394c100f metadata.xml 221 +MD5 6a7aefce4435684aa40c01e190ef307d icecast-1.3.12-r1.ebuild 1425 +MD5 71ca75db337afc9c90d91eb6798767d8 files/digest-icecast-2.0.0 65 +MD5 473c7b8b865ecfdfd794414c980fe659 files/digest-icecast-2.0.1 65 MD5 a5f4b4836da859fb3b50704c437e2ba9 files/1.3.12-errno.patch 1732 MD5 891139550c407fd1b8eade7d0186b267 files/digest-icecast-1.3.12-r1 66 -MD5 71ca75db337afc9c90d91eb6798767d8 files/digest-icecast-2.0.0 65 MD5 ff47a23b447435b728c7fad3f55c2860 files/icecast-1.3.12-variables-gentoo.diff.bz2 825 diff --git a/net-misc/icecast/files/digest-icecast-2.0.1 b/net-misc/icecast/files/digest-icecast-2.0.1 new file mode 100644 index 000000000000..0d1f1027a637 --- /dev/null +++ b/net-misc/icecast/files/digest-icecast-2.0.1 @@ -0,0 +1 @@ +MD5 dc193027769aa49d2223ff06dcc80f5c icecast-2.0.1.tar.gz 750259 diff --git a/net-misc/icecast/icecast-2.0.1.ebuild b/net-misc/icecast/icecast-2.0.1.ebuild new file mode 100644 index 000000000000..f7abfb439726 --- /dev/null +++ b/net-misc/icecast/icecast-2.0.1.ebuild @@ -0,0 +1,37 @@ +# 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.1.ebuild,v 1.1 2004/05/13 16:24:18 mholzer Exp $ + +inherit eutils + +DESCRIPTION="An opensource alternative to shoutcast that supports mp3 and ogg streaming" +HOMEPAGE="http://www.icecast.org/" +SRC_URI="http://www.icecast.org/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ~ppc sparc ~alpha amd64" +IUSE="curl" + +DEPEND="virtual/glibc + dev-libs/libxml2 + dev-libs/libxslt + >=media-libs/libvorbis-1.0 + >=media-libs/libogg-1.0 + curl? ( net-misc/curl )" + +src_compile() { + local myconf="" + use curl || myconf="${myconf} --disable-yp" + econf \ + --sysconfdir=/etc/icecast2 \ + ${myconf} || die "configure failed" + + emake || die "make failed" +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" + dodoc AUTHORS README TODO HACKING NEWS + rm -rf ${D}usr/share/doc/icecast +} |