Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 113 - shout-0.8.0.ebuild
Summary: shout-0.8.0.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:40 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:40:29 UTC
Shout is a prgram for creatinga mp3 stream for use with
icecast or shoutcast.
Comment 1 Chris Arndt 2002-01-09 22:21:26 UTC
Forgot to attache the ebuild, and now bugzilla won't let me attach it.
Comment 2 Bart Verwilst 2002-01-12 09:35:20 UTC
Could you send me the ebuild to my email?
That way i can check it out from there..
Comment 3 Chris Arndt 2002-01-12 16:02:26 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="Shout is a prgram for creatinga mp3 stream for use with
icecast or shoutcast."
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 --infodir=/usr/share/info	\
		    --mandir=/usr/share/man	\
		    --host=${CHOST} || die

	emake || die
}


src_install () {

	make DESTDIR=${D} install || die
	dodoc BUGS CREDITS README.shout TODO
}