diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-05-20 00:28:55 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-05-20 00:28:55 +0000 |
commit | a6dcadff94a5634b49963a499bccf1e7fd4ac755 (patch) | |
tree | cd52546a659d55276f20707bc0ea9fdfb6059c25 /media-sound | |
parent | Update to new version (diff) | |
download | gentoo-2-a6dcadff94a5634b49963a499bccf1e7fd4ac755.tar.gz gentoo-2-a6dcadff94a5634b49963a499bccf1e7fd4ac755.tar.bz2 gentoo-2-a6dcadff94a5634b49963a499bccf1e7fd4ac755.zip |
New package
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/ripperx/ChangeLog | 14 | ||||
-rw-r--r-- | media-sound/ripperx/files/digest-ripperx-2.3 | 1 | ||||
-rw-r--r-- | media-sound/ripperx/ripperx-2.3.ebuild | 39 |
3 files changed, 54 insertions, 0 deletions
diff --git a/media-sound/ripperx/ChangeLog b/media-sound/ripperx/ChangeLog new file mode 100644 index 000000000000..8de2833c3f9c --- /dev/null +++ b/media-sound/ripperx/ChangeLog @@ -0,0 +1,14 @@ +# ChangeLog for media-sound/ripperx +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/media-sound/ripperx/ChangeLog,v 1.1 2002/05/20 00:28:55 rphillips Exp $ + +*ripperx-2.3 (19 May 2002) + + 19 May 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. + diff --git a/media-sound/ripperx/files/digest-ripperx-2.3 b/media-sound/ripperx/files/digest-ripperx-2.3 new file mode 100644 index 000000000000..607788381399 --- /dev/null +++ b/media-sound/ripperx/files/digest-ripperx-2.3 @@ -0,0 +1 @@ +MD5 fcc55f96597eefc017b61c15541d90ce ripperX-2.3.tar.gz 155076 diff --git a/media-sound/ripperx/ripperx-2.3.ebuild b/media-sound/ripperx/ripperx-2.3.ebuild new file mode 100644 index 000000000000..981836c0a979 --- /dev/null +++ b/media-sound/ripperx/ripperx-2.3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Jonathan Gonzalez <ciberscroll@uole.com> +# $Header: /var/cvsroot/gentoo-x86/media-sound/ripperx/ripperx-2.3.ebuild,v 1.1 2002/05/20 00:28:55 rphillips Exp $ + +PN=ripperX +A=${PN}-${PV}.tar.gz +S=${WORKDIR}/${PN}-${PV} +DESCRIPTION="RipperX is a program to rip CD and enconde mp3s" +HOMEPAGE="http://ripperx.sf.net/" +SRC_URI="http://telia.dl.sourceforge.net/ripperx/${A}" +DEPEND=">=x11-libs/gtk+-1.2.10 + media-sound/lame + media-sound/cdparanoia + media-libs/id3lib" + +src_unpack () { + unpack ${A} +} + +src_compile () { + cd ${S} + ./configure + emake || die +} + + +src_install () { + cd ${S}/src + into /usr + dobin ripperX + + cd ${S}/plugins + into /usr + dobin ripperX_plugin-8hz-mp3 ripperX_plugin-bladeenc \ + ripperX_plugin-cdparanoia ripperX_plugin-encode ripperX_plugin-gogo \ + ripperX_plugin-l3enc ripperX_plugin-lame ripperX_plugin-mp3enc \ + ripperX_plugin-oggenc ripperX_plugin-xingmp3enc ripperX_plugin_tester +} |