summaryrefslogtreecommitdiff
path: root/audio/id3/patches
diff options
context:
space:
mode:
authorsketch <sketch@pkgsrc.org>2003-12-23 18:11:19 +0000
committersketch <sketch@pkgsrc.org>2003-12-23 18:11:19 +0000
commite4c156ba0909995345730fcb6a47e4fee68845b6 (patch)
tree95de99b3619d5c75c8786f0787366167e43dccee /audio/id3/patches
parent218ae6f2112c0b8a394797b4e1920926289458c0 (diff)
downloadpkgsrc-e4c156ba0909995345730fcb6a47e4fee68845b6.tar.gz
Do not attempt to include the non-standard getopt.h, unistd.h should
be sufficient. Remove an unnecessary install argument to allow this package to install unprivileged.
Diffstat (limited to 'audio/id3/patches')
-rw-r--r--audio/id3/patches/patch-aa4
-rw-r--r--audio/id3/patches/patch-ab12
2 files changed, 14 insertions, 2 deletions
diff --git a/audio/id3/patches/patch-aa b/audio/id3/patches/patch-aa
index 6648fc5ab4e..3e012fc1e89 100644
--- a/audio/id3/patches/patch-aa
+++ b/audio/id3/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.1.1.1 2001/10/12 09:21:15 agc Exp $
+$NetBSD: patch-aa,v 1.2 2003/12/23 18:11:19 sketch Exp $
--- Makefile 2001/10/12 08:59:21 1.1
+++ Makefile 2001/10/12 09:11:16
@@ -35,4 +35,4 @@ $NetBSD: patch-aa,v 1.1.1.1 2001/10/12 09:21:15 agc Exp $
- $(INSTALL) -d -m 755 $(mandir)
- $(INSTALL) -m 644 -o 0 $(PRODUCT).1 $(mandir)
+ $(BSD_INSTALL_PROGRAM) $(PRODUCT) $(bindir)
-+ $(BSD_INSTALL_MAN) -m 644 -o 0 $(PRODUCT).1 $(mandir)
++ $(BSD_INSTALL_MAN) $(PRODUCT).1 $(mandir)
diff --git a/audio/id3/patches/patch-ab b/audio/id3/patches/patch-ab
new file mode 100644
index 00000000000..326a5769a65
--- /dev/null
+++ b/audio/id3/patches/patch-ab
@@ -0,0 +1,12 @@
+$NetBSD: patch-ab,v 1.1 2003/12/23 18:11:19 sketch Exp $
+
+--- id3.c.orig 2003-12-23 12:32:28.874414092 +0000
++++ id3.c 2003-12-23 12:32:49.648359969 +0000
+@@ -34,7 +34,6 @@
+
+ #include <stdio.h>
+ #include <stdlib.h>
+-#include <getopt.h>
+ #include <errno.h>
+ #include <unistd.h>
+ #include <string.h>