diff options
author | Alexis Ballier <aballier@gentoo.org> | 2006-11-01 13:43:45 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2006-11-01 13:43:45 +0000 |
commit | d0a1202ed0e3bce51a0663970032c27090f8d6c8 (patch) | |
tree | 480dffcf5cf05534be638a34dd456cf9cd515191 /media-sound/ripperx/files | |
parent | Stable on sparc wrt #149502 (diff) | |
download | gentoo-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/files')
-rw-r--r-- | media-sound/ripperx/files/digest-ripperx-2.6.4 | 2 | ||||
-rw-r--r-- | media-sound/ripperx/files/digest-ripperx-2.6.6 | 2 | ||||
-rw-r--r-- | media-sound/ripperx/files/ripperx-2.6.6-asneeded.patch | 21 |
3 files changed, 25 insertions, 0 deletions
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 $< |