summaryrefslogtreecommitdiff
path: root/wm/bbkeys/patches
diff options
context:
space:
mode:
authorwiz <wiz>2002-03-18 09:23:00 +0000
committerwiz <wiz>2002-03-18 09:23:00 +0000
commitbedb94528f9e7c94bb8fbd19724f920f01aabb51 (patch)
treeee3d64349f2e8a814f9fcda45c666f484bc066a0 /wm/bbkeys/patches
parent4c8bfff63139eb8e605447a8c558d33350e7e360 (diff)
downloadpkgsrc-bedb94528f9e7c94bb8fbd19724f920f01aabb51.tar.gz
Update to 0.8.4:
Works better with blackbox 0.62.1. Inspired by pkg/14900 by Yannick Montulet.
Diffstat (limited to 'wm/bbkeys/patches')
-rw-r--r--wm/bbkeys/patches/patch-aa13
-rw-r--r--wm/bbkeys/patches/patch-ab17
2 files changed, 30 insertions, 0 deletions
diff --git a/wm/bbkeys/patches/patch-aa b/wm/bbkeys/patches/patch-aa
new file mode 100644
index 00000000000..bd36ef4fbb4
--- /dev/null
+++ b/wm/bbkeys/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1 2002/03/18 09:23:03 wiz Exp $
+
+--- Makefile.in.orig Fri Jan 18 14:34:58 2002
++++ Makefile.in
+@@ -78,7 +78,7 @@
+
+ SUBDIRS = src data doc redhat
+
+-docdir = $(prefix)/doc/bbkeys
++docdir = $(prefix)/share/doc/bbkeys
+ doc_DATA = README AUTHORS BUGS ChangeLog NEWS
+ EXTRA_DIST = $(doc_DATA) debian redhat
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
diff --git a/wm/bbkeys/patches/patch-ab b/wm/bbkeys/patches/patch-ab
new file mode 100644
index 00000000000..76fb9351e87
--- /dev/null
+++ b/wm/bbkeys/patches/patch-ab
@@ -0,0 +1,17 @@
+$NetBSD: patch-ab,v 1.1 2002/03/18 09:23:03 wiz Exp $
+
+--- src/bbkeys.cc.orig Tue Jan 15 04:21:25 2002
++++ src/bbkeys.cc
+@@ -676,10 +676,10 @@
+ char *args = new char[strlen(begin) + strlen(bbkeys_rcfile) +1];
+ sprintf(args, "%s%s", begin, bbkeys_rcfile);
+ res = execlp("rxvt", "rxvt", "-bg", "black", "-fg", "red",
+- "-e", args, NULL);
++ "-e", "bbkeysconf.pl", "-rcfile", bbkeys_rcfile, NULL);
+ if (res != 0) {
+ execlp("xterm", "xterm", "-bg", "black", "-fg",
+- "red", "-e", args, NULL);
++ "red", "-e", "bbkeysconf.pl", "-rcfile", bbkeys_rcfile, NULL);
+ }
+ delete args;
+ }