summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-07-21 13:50:35 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-07-21 13:50:35 +0000
commitc818a8b2630486cc060f389a864c8d42d1fdb041 (patch)
tree5373edea58bae1752c2684fe3fa760c68c5843b6 /media-sound/rip
parentReal networks RealSDK license added (diff)
downloadgentoo-2-c818a8b2630486cc060f389a864c8d42d1fdb041.tar.gz
gentoo-2-c818a8b2630486cc060f389a864c8d42d1fdb041.tar.bz2
gentoo-2-c818a8b2630486cc060f389a864c8d42d1fdb041.zip
repoman'd
Diffstat (limited to 'media-sound/rip')
-rw-r--r--media-sound/rip/files/digest-rip-1.011
-rw-r--r--media-sound/rip/rip-1.01-r1.ebuild9
-rw-r--r--media-sound/rip/rip-1.01.ebuild66
3 files changed, 5 insertions, 71 deletions
diff --git a/media-sound/rip/files/digest-rip-1.01 b/media-sound/rip/files/digest-rip-1.01
deleted file mode 100644
index 48c4d184b064..000000000000
--- a/media-sound/rip/files/digest-rip-1.01
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e29fe8cf0b0f0d855a77a7b9ad228d66 rip-1.01.tar.gz 101680
diff --git a/media-sound/rip/rip-1.01-r1.ebuild b/media-sound/rip/rip-1.01-r1.ebuild
index 70066ac6a6c9..3f0f718a5555 100644
--- a/media-sound/rip/rip-1.01-r1.ebuild
+++ b/media-sound/rip/rip-1.01-r1.ebuild
@@ -1,13 +1,16 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/media-sound/rip/rip-1.01-r1.ebuild,v 1.3 2002/07/11 06:30:41 drobbins Exp $
-
+# $Header: /var/cvsroot/gentoo-x86/media-sound/rip/rip-1.01-r1.ebuild,v 1.4 2002/07/21 13:50:33 seemant Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="A command-line based audio CD ripper and mp3 encoder"
SRC_URI="http://rip.sourceforge.net/download/${P}.tar.gz"
HOMEPAGE="http://rip.sourceforge.net"
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="x86"
+
DEPEND=""
RDEPEND="media-sound/cdparanoia
@@ -15,8 +18,6 @@ RDEPEND="media-sound/cdparanoia
>=dev-perl/CDDB_get-1.66
>=dev-perl/MP3-Info-0.91"
-
-
src_compile() {
#the thing itself is just a perl script
#so we need an empty method here
diff --git a/media-sound/rip/rip-1.01.ebuild b/media-sound/rip/rip-1.01.ebuild
deleted file mode 100644
index 730fa5348c52..000000000000
--- a/media-sound/rip/rip-1.01.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/media-sound/rip/rip-1.01.ebuild,v 1.3 2002/07/11 06:30:41 drobbins Exp $
-
-
-S="${WORKDIR}/${P}"
-DESCRIPTION="A command-line based audio CD ripper and mp3 encoder"
-SRC_URI="http://rip.sourceforge.net/download/${P}.tar.gz"
-HOMEPAGE="http://rip.sourceforge.net"
-
-DEPEND=""
-
-RDEPEND="media-sound/cdparanoia
- media-sound/lame"
-
-# Use this function to unpack your sources and apply patches, and run
-# autoconf/automake/etc. if necessary. By default, this function unpacks
-# the packages in ${A} and applies ${PF}-gentoo.diff. The default
-# starting directory is ${WORKDIR}.
-#
-src_unpack() {
- unpack "${P}.tar.gz"
- cd "${S}"
- #we need to unpack supplementary perl modules
- tar xzf CDDB_get-1.66.tar.gz
- tar xzf MP3-Info-0.91.tar.gz
-}
-
-src_compile() {
- #the thing itself is just a perl script
- #but we need to make suppl perl modules
-
- cd CDDB_get-1.66
- perl Makefile.PL && make || die "could not prepare CDDB access perl module"
- cd ..
-
- cd MP3-Info-0.91
- perl Makefile.PL && make || die "could not prepare CDDB access perl module"
- cd ..
-
-}
-
-src_install () {
-
- chmod 755 rip
- dobin rip || die
-
- #now we need to install perl modules
- cd CDDB_get-1.66
- make \
- PREFIX=${D}/usr \
- INSTALLMAN3DIR=${D}/usr/share/man/man3 \
- INSTALLMAN1DIR=${D}/usr/share/man/man1 \
- install || die
-
-
- cd ../MP3-Info-0.91
- make \
- PREFIX=${D}/usr \
- INSTALLMAN3DIR=${D}/usr/share/man/man3 \
- INSTALLMAN1DIR=${D}/usr/share/man/man1 \
- install || die
-
- # Install documentation.
- dodoc COPYING FAQ README
-}