summaryrefslogtreecommitdiff
path: root/audio/id3v2/files/patch-aa
diff options
context:
space:
mode:
authorClive Lin <clive@FreeBSD.org>2001-10-20 14:55:06 +0000
committerClive Lin <clive@FreeBSD.org>2001-10-20 14:55:06 +0000
commitbb82e50cd61e3cc4ab0a5db31d54743732576342 (patch)
treecf539c5fc6d7bf33ecce6325b70ffd81c4eca092 /audio/id3v2/files/patch-aa
parentAdd tk83 to BUILD_DEPENDS, RUN_DEPENDS. (diff)
New port: id3v2, a command line id3v2 tag editor
PR: ports/31207 Submitted by: David MacKenzie <djm@pix.net>
Diffstat (limited to 'audio/id3v2/files/patch-aa')
-rw-r--r--audio/id3v2/files/patch-aa18
1 files changed, 18 insertions, 0 deletions
diff --git a/audio/id3v2/files/patch-aa b/audio/id3v2/files/patch-aa
new file mode 100644
index 000000000000..c28b486e1d59
--- /dev/null
+++ b/audio/id3v2/files/patch-aa
@@ -0,0 +1,18 @@
+--- Makefile.orig Thu Apr 6 17:23:27 2000
++++ Makefile Wed Oct 10 16:59:49 2001
+@@ -1,7 +1,12 @@
++PREFIX = /usr/local
++CXXFLAGS += -I${PREFIX}/include
++LDFLAGS += -L${PREFIX}/lib
++
+ all: id3v2
+
+-id3v2: Makefile convert.cpp list.cpp id3v2.cpp convert.cpp
+- g++ -lid3 -g -o id3v2 id3v2.cpp list.cpp convert.cpp
++id3v2: convert.o list.o id3v2.o
++ g++ ${LDFLAGS} -lid3 -lz -lgnugetopt -o $@ convert.o list.o id3v2.o
+
+ install: all
+- cp id3v2 /usr/local/bin/
++ install -c -s id3v2 ${PREFIX}/bin/id3v2
++ nroff -man id3v2.1 > ${PREFIX}/man/man1/id3v2.1