summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjoerg <joerg>2015-06-18 19:01:01 +0000
committerjoerg <joerg>2015-06-18 19:01:01 +0000
commit3a4cf56568c41b3730735f8f0f553ea228943b4a (patch)
tree2943003aa763e432a2601f7366a18cee5d0cce45 /net
parent27bd1e6a294cc343eedcbc21bbadb1468b73d824 (diff)
downloadpkgsrc-3a4cf56568c41b3730735f8f0f553ea228943b4a.tar.gz
Fix build with Perl 5.22.
Diffstat (limited to 'net')
-rw-r--r--net/spread/distinfo5
-rw-r--r--net/spread/patches/patch-buildtools_fixpaths22
2 files changed, 24 insertions, 3 deletions
diff --git a/net/spread/distinfo b/net/spread/distinfo
index 7e9b322d125..8f206fc3834 100644
--- a/net/spread/distinfo
+++ b/net/spread/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.10 2013/11/01 13:26:53 jperkin Exp $
+$NetBSD: distinfo,v 1.11 2015/06/18 19:01:01 joerg Exp $
SHA1 (spread-src-3.17.3.tar.gz) = a3085dd225264a4223eff3346b6b5de64ac2dfc6
RMD160 (spread-src-3.17.3.tar.gz) = 92def613d602d743d4f7c433f70f0b234bf47feb
@@ -6,6 +6,5 @@ Size (spread-src-3.17.3.tar.gz) = 299975 bytes
SHA1 (patch-ba) = 795938504e97da34e83e9e66b8b81ff894cbb5b4
SHA1 (patch-bb) = 6b2e9ef29802c6f60776d7be4046087f96b8ffcb
SHA1 (patch-bd) = d39aed08e98e81bca572a429c511ffb400b020c3
+SHA1 (patch-buildtools_fixpaths) = cbff56d51c3fb7f4ed4a4a311da8a6a732224964
SHA1 (patch-configure) = fb86443e2afe2c17206e73bcdbd2b872397e9d4a
-SHA1 (patch-sample.spread.conf) = 3aa9bc8733d9c32337819027cdea5d83f9af19fc
-SHA1 (patch-spread__params.h) = 7878d94ae55b72ab87eeb0ea43f737ec8ff5fd40
diff --git a/net/spread/patches/patch-buildtools_fixpaths b/net/spread/patches/patch-buildtools_fixpaths
new file mode 100644
index 00000000000..22153ea8edb
--- /dev/null
+++ b/net/spread/patches/patch-buildtools_fixpaths
@@ -0,0 +1,22 @@
+$NetBSD: patch-buildtools_fixpaths,v 1.1 2015/06/18 19:01:01 joerg Exp $
+
+--- buildtools/fixpaths.orig 2015-06-18 13:43:07.000000000 +0000
++++ buildtools/fixpaths
+@@ -5,7 +5,7 @@
+
+ $usage = "Usage: $0 [-Dstring=replacement] [[infile] ...]\n";
+
+-if (!defined(@ARGV)) { die ("$usage"); }
++if (!(@ARGV)) { die ("$usage"); }
+
+ # read in the command line and get some definitions
+ while ($_=$ARGV[0], /^-/) {
+@@ -23,7 +23,7 @@ while ($_=$ARGV[0], /^-/) {
+ }
+ } # while parsing arguments
+
+-if (!defined(%def)) {
++if (!(%def)) {
+ die ("$0: nothing to do - no substitutions listed!\n");
+ }
+