summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-02 17:20:08 +0100
committerDavid Seifert <soap@gentoo.org>2017-01-04 12:12:49 +0200
commit0108362b0c3c84a98f4cdc2e6bad16e2a16acc21 (patch)
tree53d167a28584ec9ddc366efe3a0985f2abc17a84
parentmedia-sound/gimmix: remove unused patch (diff)
downloadgentoo-0108362b0c3c84a98f4cdc2e6bad16e2a16acc21.tar.gz
gentoo-0108362b0c3c84a98f4cdc2e6bad16e2a16acc21.tar.bz2
gentoo-0108362b0c3c84a98f4cdc2e6bad16e2a16acc21.zip
media-sound/id3v2: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/3305
-rw-r--r--media-sound/id3v2/files/id3v2-0.1.11-alpha.patch17
-rw-r--r--media-sound/id3v2/files/id3v2-0.1.11-makefile.patch23
2 files changed, 0 insertions, 40 deletions
diff --git a/media-sound/id3v2/files/id3v2-0.1.11-alpha.patch b/media-sound/id3v2/files/id3v2-0.1.11-alpha.patch
deleted file mode 100644
index 9cad2ac3e8e0..000000000000
--- a/media-sound/id3v2/files/id3v2-0.1.11-alpha.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Prevent a segfault on alpha and any other arch that doesn't always get
-zero-initialized automatics. Frankly the code in this segment looks
-pretty broken to me, but I'm just fixing the segfault...
-
-07 Feb 2004 agriffis
-
---- id3v2.cpp 2004-05-04 20:30:15.000000000 +0200
-+++ id3v2.cpp.alpha 2004-08-29 16:13:08.848513320 +0200
-@@ -423,7 +423,7 @@
- {
- // check if there is a total track number and if we only have
- // the track number for this file. In this case combine them.
-- char *currentTrackNum, *newTrackNum;
-+ char *currentTrackNum, *newTrackNum = NULL;
-
- if (pFrame != NULL)
- {
diff --git a/media-sound/id3v2/files/id3v2-0.1.11-makefile.patch b/media-sound/id3v2/files/id3v2-0.1.11-makefile.patch
deleted file mode 100644
index 06a26a102b6c..000000000000
--- a/media-sound/id3v2/files/id3v2-0.1.11-makefile.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-Index: id3v2-0.1.11/Makefile
-===================================================================
---- id3v2-0.1.11.orig/Makefile
-+++ id3v2-0.1.11/Makefile
-@@ -3,14 +3,14 @@ all: id3v2
- VERSION=0.1.11
-
- PREFIX= /usr/local
--CXXFLAGS+= -I${PREFIX}/include/ -DVERSION="\"${VERSION}\"" #-DSORT_RUNTIME
--LDFLAGS+= -L${PREFIX}/lib/
-+CXXFLAGS+= -I${PREFIX}/include/ -DVERSION="\"${VERSION}\"" $(OPT_CXXFLAGS) #-DSORT_RUNTIME
-+LDFLAGS+= -L${PREFIX}/lib/ $(OPT_LDFLAGS)
-
- id3v2: convert.o list.o id3v2.o genre.o
-- c++ ${LDFLAGS} -pedantic -Wall -lz -lid3 -g -o $@ $^
-+ $(CXX) $(LDFLAGS) -pedantic -Wall -o $@ $^ -lz -lid3
-
- create_map: create_map.o
-- c++ -Wall -g -o $@ $^
-+ $(CXX) $(LDFLAGS) -o $@ $^
-
- install: all
- install -c -s id3v2 ${PREFIX}/bin/id3v2