diff options
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/streamripper/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/streamripper/files/digest-streamripper-1.32 | 1 | ||||
-rw-r--r-- | media-sound/streamripper/streamripper-1.32.ebuild | 25 |
3 files changed, 34 insertions, 0 deletions
diff --git a/media-sound/streamripper/ChangeLog b/media-sound/streamripper/ChangeLog new file mode 100644 index 000000000000..8d6de6faeda8 --- /dev/null +++ b/media-sound/streamripper/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for <CATEGORY>/<PACKAGE_NAME> +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/streamripper/ChangeLog,v 1.1 2002/07/23 18:39:19 aliz Exp $ + +*streamripper-1.32 (23 Jul 2002) + + 28 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> streamripper-1.32.ebuild : + Initial import. Ebuild submitted by Chris Bainbridge <chrb@dcs.ed.ac.uk>. diff --git a/media-sound/streamripper/files/digest-streamripper-1.32 b/media-sound/streamripper/files/digest-streamripper-1.32 new file mode 100644 index 000000000000..037cadf15bd6 --- /dev/null +++ b/media-sound/streamripper/files/digest-streamripper-1.32 @@ -0,0 +1 @@ +MD5 ca5330602427126d6848a6fdcf4e0079 streamripper-1.32.tar.gz 98092 diff --git a/media-sound/streamripper/streamripper-1.32.ebuild b/media-sound/streamripper/streamripper-1.32.ebuild new file mode 100644 index 000000000000..b3892c7c6b31 --- /dev/null +++ b/media-sound/streamripper/streamripper-1.32.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/streamripper/streamripper-1.32.ebuild,v 1.1 2002/07/23 18:39:19 aliz Exp $ + +DESCRIPTION="Extracts and records individual MP3 file tracks from shoutcast streams" +HOMEPAGE="http://streamripper.sourceforge.net" +SRC_URI="http://streamripper.sourceforge.net/dl/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +DEPEND="virtual/glibc" +S=${WORKDIR}/${P} +RDEPEND=$DEPEND + +src_compile() { + ./configure \ + --host=${CHOST} || die "./configure failed" + emake || die +} + +src_install () { + dobin streamripper + dodoc CHANGES COPYING README THANKS TODO +} + |