summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-11-10 14:07:02 +0000
committerrillig <rillig@pkgsrc.org>2006-11-10 14:07:02 +0000
commitc8ab1e5a764eb29cf471b1322943f9a8a62f2075 (patch)
treebedc9e43f275b367cf95ed7067bea81b3004527b
parentee115ddc82be3c110924f31dc5cbd9eb3c79fce1 (diff)
downloadpkgsrc-c8ab1e5a764eb29cf471b1322943f9a8a62f2075.tar.gz
Added a patch that fixes the generation of the dependency files (*.d).
-rw-r--r--x11/wxGTK/distinfo3
-rw-r--r--x11/wxGTK/patches/patch-ac15
2 files changed, 17 insertions, 1 deletions
diff --git a/x11/wxGTK/distinfo b/x11/wxGTK/distinfo
index 58b1ed07b2b..4b04696a435 100644
--- a/x11/wxGTK/distinfo
+++ b/x11/wxGTK/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.27 2006/10/08 04:29:59 salo Exp $
+$NetBSD: distinfo,v 1.28 2006/11/10 14:07:02 rillig Exp $
SHA1 (wxGTK-2.6.3.tar.bz2) = 7c2dfe27a56aa99b4ea557a436bf84a13a579a9d
RMD160 (wxGTK-2.6.3.tar.bz2) = d7465860d7c07b42d299d4b4c5d015b25f96a9dd
@@ -8,3 +8,4 @@ RMD160 (wxGTK-2.6.3-libtool.diff2.bz2) = 3250c47641c023228e44e6477ecb7aaf6828042
Size (wxGTK-2.6.3-libtool.diff2.bz2) = 136484 bytes
SHA1 (patch-aa) = 0ef5ae28b70a3290e37363193248365f4cf03cec
SHA1 (patch-ab) = 3e9c6bc0df33e466390a4f6483b1c84e2eb9257b
+SHA1 (patch-ac) = a46662f057b521352e03a678185b215cc80f35f4
diff --git a/x11/wxGTK/patches/patch-ac b/x11/wxGTK/patches/patch-ac
new file mode 100644
index 00000000000..7894e8a40a3
--- /dev/null
+++ b/x11/wxGTK/patches/patch-ac
@@ -0,0 +1,15 @@
+$NetBSD: patch-ac,v 1.9 2006/11/10 14:07:02 rillig Exp $
+
+In the cases where $objfile contains a slash, its directory must be
+created in advance.
+
+--- bk-deps.orig 2006-11-10 09:48:30.615710392 +0100
++++ bk-deps 2006-11-10 09:48:18.682569460 +0100
+@@ -90,6 +90,7 @@ elif test $DEPSMODE = unixcc; then
+ esac
+ shift
+ done
++ mkdir -p `dirname "$DEPSDIR/$objfile"`
+ eval "$cmd $DEPSFLAG" | sed "s|.*:|$objfile:|" >${DEPSDIR}/${objfile}.d
+ exit 0
+ else