diff options
Diffstat (limited to 'media-sound/rip')
-rw-r--r-- | media-sound/rip/Manifest | 1 | ||||
-rw-r--r-- | media-sound/rip/metadata.xml | 5 | ||||
-rw-r--r-- | media-sound/rip/rip-1.07.ebuild | 38 |
3 files changed, 44 insertions, 0 deletions
diff --git a/media-sound/rip/Manifest b/media-sound/rip/Manifest new file mode 100644 index 000000000000..fe64d2615296 --- /dev/null +++ b/media-sound/rip/Manifest @@ -0,0 +1 @@ +DIST rip-1.07.tar.gz 110261 RMD160 4c181d7032e89d3f9cba952242d23c19b69cfdcb SHA1 a7b60dbc5dbaf5ca0d24c9e554fa3e5885bbccb1 SHA256 3031c5efbfb72bcd80de70b13528702893be45f386764a285c95c42b8550c6a8 diff --git a/media-sound/rip/metadata.xml b/media-sound/rip/metadata.xml new file mode 100644 index 000000000000..e1774e3d9ad7 --- /dev/null +++ b/media-sound/rip/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>sound</herd> +</pkgmetadata> diff --git a/media-sound/rip/rip-1.07.ebuild b/media-sound/rip/rip-1.07.ebuild new file mode 100644 index 000000000000..6d80cda02a5a --- /dev/null +++ b/media-sound/rip/rip-1.07.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +IUSE="" + +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="amd64 ppc ppc64 sparc x86" + +DEPEND="" + +RDEPEND="media-sound/cdparanoia + virtual/eject + dev-lang/perl + >=dev-perl/CDDB_get-2.10 + >=dev-perl/MP3-Info-0.91 + || ( media-sound/vorbis-tools media-sound/lame media-libs/flac media-sound/bladeenc media-sound/gogo )" + +src_compile() { + #the thing itself is just a perl script + #so we need an empty method here + echo "nothing to be done" + +} + +src_install () { + + chmod 755 rip + dobin rip || die + + # Install documentation. + dodoc FAQ README +} |