diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /media-sound/rip | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
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 +} |