summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2006-11-01 13:43:45 +0000
committerAlexis Ballier <aballier@gentoo.org>2006-11-01 13:43:45 +0000
commitd0a1202ed0e3bce51a0663970032c27090f8d6c8 (patch)
tree480dffcf5cf05534be638a34dd456cf9cd515191 /media-sound/ripperx
parentStable on sparc wrt #149502 (diff)
downloadgentoo-2-d0a1202ed0e3bce51a0663970032c27090f8d6c8.tar.gz
gentoo-2-d0a1202ed0e3bce51a0663970032c27090f8d6c8.tar.bz2
gentoo-2-d0a1202ed0e3bce51a0663970032c27090f8d6c8.zip
As-needed fix, thanks to Jory A. Pratt <geekypenguin@gmail.com>, bug #138922
(Portage version: 2.1.2_rc1-r2)
Diffstat (limited to 'media-sound/ripperx')
-rw-r--r--media-sound/ripperx/ChangeLog8
-rw-r--r--media-sound/ripperx/files/digest-ripperx-2.6.42
-rw-r--r--media-sound/ripperx/files/digest-ripperx-2.6.62
-rw-r--r--media-sound/ripperx/files/ripperx-2.6.6-asneeded.patch21
-rw-r--r--media-sound/ripperx/ripperx-2.6.6.ebuild15
5 files changed, 43 insertions, 5 deletions
diff --git a/media-sound/ripperx/ChangeLog b/media-sound/ripperx/ChangeLog
index e1032ee707eb..18c049349dfc 100644
--- a/media-sound/ripperx/ChangeLog
+++ b/media-sound/ripperx/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/ripperx
-# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ripperx/ChangeLog,v 1.20 2005/09/19 03:32:52 vanquirius Exp $
+# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ripperx/ChangeLog,v 1.21 2006/11/01 13:43:45 aballier Exp $
+
+ 01 Nov 2006; Alexis Ballier <aballier@gentoo.org>
+ +files/ripperx-2.6.6-asneeded.patch, ripperx-2.6.6.ebuild:
+ As-needed fix, thanks to Jory A. Pratt <geekypenguin@gmail.com>, bug #138922
*ripperx-2.6.6 (19 Sep 2005)
diff --git a/media-sound/ripperx/files/digest-ripperx-2.6.4 b/media-sound/ripperx/files/digest-ripperx-2.6.4
index 0b40d0a7b7d7..3defd6c4ec57 100644
--- a/media-sound/ripperx/files/digest-ripperx-2.6.4
+++ b/media-sound/ripperx/files/digest-ripperx-2.6.4
@@ -1 +1,3 @@
MD5 cb854193305343597abd3cfc97a2a72e ripperX-2.6.4.tar.gz 171980
+RMD160 0493a13c48f58eba229bd3dd1633f2308a6131d5 ripperX-2.6.4.tar.gz 171980
+SHA256 0bb3fe2c49358ab4e0fc27562de18898cef66a8cc7699410867905e4e769956a ripperX-2.6.4.tar.gz 171980
diff --git a/media-sound/ripperx/files/digest-ripperx-2.6.6 b/media-sound/ripperx/files/digest-ripperx-2.6.6
index 6ed15aebb26c..5e329da39724 100644
--- a/media-sound/ripperx/files/digest-ripperx-2.6.6
+++ b/media-sound/ripperx/files/digest-ripperx-2.6.6
@@ -1 +1,3 @@
MD5 eeb050ac4fd672559e39c854b84b83f7 ripperX-2.6.6.tar.gz 172140
+RMD160 aec609eb2c9bcc79d19818a9c320b8eed0d3e485 ripperX-2.6.6.tar.gz 172140
+SHA256 b5a9aee74cbbcea2008513ce7af8803ad8cfd6947604bccd8113a007de453bb9 ripperX-2.6.6.tar.gz 172140
diff --git a/media-sound/ripperx/files/ripperx-2.6.6-asneeded.patch b/media-sound/ripperx/files/ripperx-2.6.6-asneeded.patch
new file mode 100644
index 000000000000..4244e32fc8be
--- /dev/null
+++ b/media-sound/ripperx/files/ripperx-2.6.6-asneeded.patch
@@ -0,0 +1,21 @@
+--- ripperX-2.6.6/src/Makefile.in-orig 2006-06-26 22:53:42.000000000 -0500
++++ ripperX-2.6.6/src/Makefile.in 2006-06-26 22:54:38.000000000 -0500
+@@ -11,7 +11,8 @@
+
+ CC = @CC@
+ CFLAGS = @CFLAGS@
+-LDFLAGS = @LDFLAGS@ @LIBS@ -lutil
++LDFLAGS = @LDFLAGS@
++LIBS = @LIBS@ -lutil
+ INSTALL = @INSTALL@
+
+ CFILES = main.c\
+@@ -35,7 +36,7 @@
+ all: ripperX
+
+ ripperX: $(OFILES)
+- $(CC) $(LDFLAGS) $(OFILES) -o ripperX
++ $(CC) $(LDFLAGS) $(OFILES) $(LIBS) -o ripperX
+
+ .c.o:
+ $(CC) $(CFLAGS) -c $<
diff --git a/media-sound/ripperx/ripperx-2.6.6.ebuild b/media-sound/ripperx/ripperx-2.6.6.ebuild
index de320ff2def0..e61389264379 100644
--- a/media-sound/ripperx/ripperx-2.6.6.ebuild
+++ b/media-sound/ripperx/ripperx-2.6.6.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2005 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/ripperx/ripperx-2.6.6.ebuild,v 1.1 2005/09/19 03:32:52 vanquirius Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/ripperx/ripperx-2.6.6.ebuild,v 1.2 2006/11/01 13:43:45 aballier Exp $
+
+inherit eutils
MY_P="${P/x/X}"
S="${WORKDIR}/${MY_P}"
@@ -20,7 +22,14 @@ DEPEND="=x11-libs/gtk+-1.2*
media-libs/id3lib
media-libs/flac"
-src_install () {
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+
+ epatch "${FILESDIR}/${P}-asneeded.patch"
+}
+
+src_install() {
dodoc CHANGES FAQ README* TODO
into /usr