diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2002-01-13 22:04:20 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2002-01-13 22:04:20 +0000 |
commit | f58382962247f1e700f495889bdd9dc13a20b1de (patch) | |
tree | e6c8d3fa24eb6db65f30d0a7cfddd18d7c33a9af /net-misc/shout | |
parent | new nvclock ebuild (diff) | |
download | gentoo-2-f58382962247f1e700f495889bdd9dc13a20b1de.tar.gz gentoo-2-f58382962247f1e700f495889bdd9dc13a20b1de.tar.bz2 gentoo-2-f58382962247f1e700f495889bdd9dc13a20b1de.zip |
shout version 0.8.0, initial ebuild
Diffstat (limited to 'net-misc/shout')
-rw-r--r-- | net-misc/shout/files/digest-shout-0.8.0 | 1 | ||||
-rw-r--r-- | net-misc/shout/shout-0.8.0.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/net-misc/shout/files/digest-shout-0.8.0 b/net-misc/shout/files/digest-shout-0.8.0 new file mode 100644 index 000000000000..332b03d628d0 --- /dev/null +++ b/net-misc/shout/files/digest-shout-0.8.0 @@ -0,0 +1 @@ +MD5 d44604a2235532e31e10d2d0e4740f20 shout-0.8.0.tar.gz 69632 diff --git a/net-misc/shout/shout-0.8.0.ebuild b/net-misc/shout/shout-0.8.0.ebuild new file mode 100644 index 000000000000..c7281fad7ca9 --- /dev/null +++ b/net-misc/shout/shout-0.8.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author: Chris Arndt <arndtc@mailandnews.com> +# $Header: /var/cvsroot/gentoo-x86/net-misc/shout/shout-0.8.0.ebuild,v 1.1 2002/01/13 22:04:20 verwilst Exp $ + +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" + +DEPEND="virtual/glibc" + +src_compile() { + + ./configure --prefix=/usr \ + --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 + +} |