summaryrefslogtreecommitdiff
path: root/misc/tmux
diff options
context:
space:
mode:
authorhauke <hauke>2014-02-27 15:56:53 +0000
committerhauke <hauke>2014-02-27 15:56:53 +0000
commit755198e20e648e67f334349cd323944f0a019898 (patch)
tree9f61eb8603867534144091914fb4bbc14100d6fd /misc/tmux
parentdd614e764db155d2245121e08269a9504db6e137 (diff)
downloadpkgsrc-755198e20e648e67f334349cd323944f0a019898.tar.gz
At least on SunOS, lang/nawk (nawk-20050424nb3) insists on
a space between -f and the program file name, by penalty of "/opt/local/bin/nawk: no program filename"
Diffstat (limited to 'misc/tmux')
-rw-r--r--misc/tmux/distinfo3
-rw-r--r--misc/tmux/patches/patch-Makefile.in19
2 files changed, 21 insertions, 1 deletions
diff --git a/misc/tmux/distinfo b/misc/tmux/distinfo
index f2ceee0fe5a..3a80732e0f2 100644
--- a/misc/tmux/distinfo
+++ b/misc/tmux/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.25 2014/02/22 23:32:30 wiz Exp $
+$NetBSD: distinfo,v 1.26 2014/02/27 15:56:53 hauke Exp $
SHA1 (tmux-1.9a.tar.gz) = 815264268e63c6c85fe8784e06a840883fcfc6a2
RMD160 (tmux-1.9a.tar.gz) = 29ae5f12aa71ee800643fb2df23573bee83f5965
Size (tmux-1.9a.tar.gz) = 447938 bytes
+SHA1 (patch-Makefile.in) = b902156666e515e6c763eee6ffde8ba2ff4c7f98
SHA1 (patch-server-client.c) = 1cd724559d5cac935b4bbb1d02a7927ae54ae3fc
diff --git a/misc/tmux/patches/patch-Makefile.in b/misc/tmux/patches/patch-Makefile.in
new file mode 100644
index 00000000000..9fa277ae4e1
--- /dev/null
+++ b/misc/tmux/patches/patch-Makefile.in
@@ -0,0 +1,19 @@
+$NetBSD: patch-Makefile.in,v 1.1 2014/02/27 15:56:54 hauke Exp $
+
+At least on SunOS, lang/nawk (nawk-20050424nb3) insists on
+a space between -f and the program file name, by penalty of
+"/opt/local/bin/nawk: no program filename"
+
+--- Makefile.in.orig 2014-02-22 20:56:13.000000000 +0000
++++ Makefile.in
+@@ -1221,8 +1221,8 @@ install-exec-hook:
+ sed -e "s|@SYSCONFDIR@|$(sysconfdir)|g" $(srcdir)/tmux.1 \
+ >$(srcdir)/tmux.1.mdoc; \
+ else \
+- sed -e "s|@SYSCONFDIR@|$(sysconfdir)|g" $(srcdir)/tmux.1| \
+- $(AWK) -fmdoc2man.awk >$(srcdir)/tmux.1.man; \
++ sed -e "s|@SYSCONFDIR@|$(sysconfdir)|g" $(srcdir)/tmux.1 | \
++ $(AWK) -f mdoc2man.awk >$(srcdir)/tmux.1.man; \
+ fi
+ $(MKDIR_P) $(DESTDIR)$(mandir)/man1
+ $(INSTALL_DATA) $(srcdir)/tmux.1.@MANFORMAT@ \