Icecast is an Internet based broadcasting system based on the Mpeg Layer III streaming technology. It is, however, not limited to streaming mp3 files. It was originally inspired by Nullsoft's Shoutcast and also mp3serv by Scott Manley.
Forgot to attache the ebuild, and now bugzilla won't let me attach it.
Please mail me the ebuild itself (verwilst@gentoo.org), so i can check out the ebuild :o)
# Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintaineri: Chris Arndt <arndtc@mailandnews.com> S=${WORKDIR}/${P} DESCRIPTION="Icecast is an Internet based broadcasting system based on the Mpeg Layer III streaming technology. It is, however, not limited to streaming mp3 files. It was originally inspired by Nullsoft's Shoutcast and also mp3serv by Scott Manley. " SRC_URI="http://www.icecast.org/releases/${P}.tar.gz" HOMEPAGE="http://www.icecast.org" #build-time dependencies DEPEND="virtual/glibc" #run-time dependencies, same as DEPEND if RDEPEND isn't defined: #RDEPEND="$DEPEND" src_compile() { ./configure --with-libwrap \ --with-crypt \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ --host=${CHOST} || die emake || die } src_install () { make DESTDIR=${D} install || die dodoc AUTHORS BUGS CHANGES COPYING Changelog FAQ INSTALL README TESTED TODO }