Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 112 - icecast-1.3.11.ebuild
Summary: icecast-1.3.11.ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Server (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Bart Verwilst
URL: http://www.icecast.org
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2002-01-09 19:39 UTC by Chris Arndt
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Chris Arndt 2002-01-09 19:39:01 UTC
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.
Comment 1 Chris Arndt 2002-01-09 22:21:17 UTC
Forgot to attache the ebuild, and now bugzilla won't let me attach it.
Comment 2 Bart Verwilst 2002-01-12 09:31:27 UTC
Please mail me the ebuild itself (verwilst@gentoo.org), 
so i can check out the ebuild :o)
Comment 3 Chris Arndt 2002-01-12 16:02:17 UTC
# 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
}