summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authordsainty <dsainty@pkgsrc.org>2015-07-10 08:13:41 +0000
committerdsainty <dsainty@pkgsrc.org>2015-07-10 08:13:41 +0000
commit3424c58ab21ed8c5916d88d41c467ef0c2c72433 (patch)
tree7a4265ae24eaf6ae2e091225030c5e93c525928b /net
parent796740136d8d31935eb6addae795b81d67eaacf3 (diff)
downloadpkgsrc-3424c58ab21ed8c5916d88d41c467ef0c2c72433.tar.gz
Fix shell syntax to work with pdksh.
This is already fixed in upstream's repository.
Diffstat (limited to 'net')
-rw-r--r--net/wireshark/distinfo3
-rw-r--r--net/wireshark/patches/patch-help_Makefile.in15
2 files changed, 17 insertions, 1 deletions
diff --git a/net/wireshark/distinfo b/net/wireshark/distinfo
index b4f53dc678c..508c97789c9 100644
--- a/net/wireshark/distinfo
+++ b/net/wireshark/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.81 2015/05/15 18:02:13 tron Exp $
+$NetBSD: distinfo,v 1.82 2015/07/10 08:13:41 dsainty Exp $
SHA1 (wireshark-1.10.14.tar.bz2) = 47c359dc1b9791d2091887a26fdba65f4a7ef3b8
RMD160 (wireshark-1.10.14.tar.bz2) = 7a14c8a2a7c991893ceef1572fe216f74f9992cf
@@ -10,3 +10,4 @@ SHA1 (patch-ba) = f2fa69d1254b94c7b6b28d5e056c211a019d1db9
SHA1 (patch-bb) = 9379f67c2f5d1c63aa0b2c597ef789336db78352
SHA1 (patch-bc) = 052ede4ba58502117fe7b355e22a906ff65b773e
SHA1 (patch-ca) = 08c4ae23739fbec238b02a2d0398b4a157f9c077
+SHA1 (patch-help_Makefile.in) = 3da440cacb51733c8fbd18e266f2ff5b893efd50
diff --git a/net/wireshark/patches/patch-help_Makefile.in b/net/wireshark/patches/patch-help_Makefile.in
new file mode 100644
index 00000000000..a6ac90edb29
--- /dev/null
+++ b/net/wireshark/patches/patch-help_Makefile.in
@@ -0,0 +1,15 @@
+$NetBSD: patch-help_Makefile.in,v 1.1 2015/07/10 08:13:42 dsainty Exp $
+
+Not all shells (E.g. pdksh) support '((', whereas '( (' is portable.
+
+--- help/Makefile.in.orig 2015-05-13 08:21:33.000000000 +1200
++++ help/Makefile.in 2015-07-10 18:21:32.144104113 +1200
+@@ -673,7 +673,7 @@
+ # can use it exclusively.
+ faq.txt: $(srcdir)/faq.py
+ $(AM_V_GEN)$(srcdir)/faq.py >$@.tmp && \
+- (( which elinks > /dev/null && elinks -dump -dump-width 72 -no-numbering -no-references < $@.tmp > $@ ) || \
++ ( ( which elinks > /dev/null && elinks -dump -dump-width 72 -no-numbering -no-references < $@.tmp > $@ ) || \
+ ( which links > /dev/null && links -width 72 -html-numbered-links 0 -dump $@.tmp > $@ ) || \
+ ( which lynx > /dev/null && lynx -dump -width=72 -nolist -stdin -force-html < $@.tmp > $@ ) || \
+ $(srcdir)/../tools/html2text.py --width=72 --no-links $@.tmp > $@ ) && \