summaryrefslogtreecommitdiff
path: root/wm/bbrun/patches
diff options
context:
space:
mode:
authorwiz <wiz>2002-06-12 00:36:21 +0000
committerwiz <wiz>2002-06-12 00:36:21 +0000
commit3ecd19bdb8b2f5110d063fdcfea0845ac4a12324 (patch)
treef3e37bec921beedf58dbd6b069a70c4a72aec931 /wm/bbrun/patches
parentaf81948f4af7b4123378cd7dfe047acd8e778e28 (diff)
downloadpkgsrc-3ecd19bdb8b2f5110d063fdcfea0845ac4a12324.tar.gz
Initial import of bbrun-1.3, based on a package provided by ptiJo in
pkg/16863: BBrun is a run utility for BlackBox which can be run in the slit or in withdrawn mode so that it can be bound to a keystroke from bbkeys. It also features a history list of the most recent commands.
Diffstat (limited to 'wm/bbrun/patches')
-rw-r--r--wm/bbrun/patches/patch-aa24
1 files changed, 24 insertions, 0 deletions
diff --git a/wm/bbrun/patches/patch-aa b/wm/bbrun/patches/patch-aa
new file mode 100644
index 00000000000..15c1aa0f1d2
--- /dev/null
+++ b/wm/bbrun/patches/patch-aa
@@ -0,0 +1,24 @@
+$NetBSD: patch-aa,v 1.1.1.1 2002/06/12 00:36:21 wiz Exp $
+
+--- Makefile.orig Wed Feb 6 21:05:51 2002
++++ Makefile
+@@ -1,6 +1,6 @@
+ CC = gcc
+-LIBS = -lXpm `gtk-config --libs`
+-CFLAGS = `gtk-config --cflags`
++LIBS = -lXpm `${GTK_CONFIG} --libs`
++CFLAGS = `${GTK_CONFIG} --cflags`
+ OBJS = bbrun.o \
+ ../wmgeneral/wmgeneral.o \
+ ../wmgeneral/misc.o \
+@@ -9,8 +9,10 @@
+ .c.o:
+ $(CC) -c -O2 -Wall $< -o $*.o $(CFLAGS)
+
++all: bbrun
++
+ bbrun: $(OBJS)
+ $(CC) -Wall -g -o bbrun $^ $(LIBS)
+
+ clean:
+ rm -f bbrun $(OBJS)