summaryrefslogtreecommitdiff
path: root/wm/bbrun
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-06-12 00:36:21 +0000
committerwiz <wiz@pkgsrc.org>2002-06-12 00:36:21 +0000
commit69a4d046d566fafcf4a606b6e834879af61d6e5f (patch)
treef3e37bec921beedf58dbd6b069a70c4a72aec931 /wm/bbrun
parent1571c8316500a7da794a7f7c5fdee6d927168afd (diff)
downloadpkgsrc-69a4d046d566fafcf4a606b6e834879af61d6e5f.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')
-rw-r--r--wm/bbrun/DESCR3
-rw-r--r--wm/bbrun/Makefile23
-rw-r--r--wm/bbrun/PLIST4
-rw-r--r--wm/bbrun/distinfo5
-rw-r--r--wm/bbrun/patches/patch-aa24
5 files changed, 59 insertions, 0 deletions
diff --git a/wm/bbrun/DESCR b/wm/bbrun/DESCR
new file mode 100644
index 00000000000..6665fa811c8
--- /dev/null
+++ b/wm/bbrun/DESCR
@@ -0,0 +1,3 @@
+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.
diff --git a/wm/bbrun/Makefile b/wm/bbrun/Makefile
new file mode 100644
index 00000000000..082db4e417e
--- /dev/null
+++ b/wm/bbrun/Makefile
@@ -0,0 +1,23 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/06/12 00:36:21 wiz Exp $
+#
+
+DISTNAME= bbrun-1.3
+WRKSRC= ${WRKDIR}/${DISTNAME}/bbrun
+CATEGORIES= wm x11
+MASTER_SITES= http://www.dwave.net/~jking/bbrun/
+
+MAINTAINER= ptiJo@noos.fr
+HOMEPAGE= http://www.dwave.net/~jking/bbrun/
+COMMENT= run utility for BlackBox
+
+USE_GMAKE= yes
+USE_BUILDLINK_ONLY= yes
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/bbrun ${PREFIX}/bin
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/bbrun
+ ${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/README ${PREFIX}/share/doc/bbrun
+
+.include "../../graphics/xpm/buildlink.mk"
+.include "../../x11/gtk/buildlink.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/wm/bbrun/PLIST b/wm/bbrun/PLIST
new file mode 100644
index 00000000000..b715541d6b2
--- /dev/null
+++ b/wm/bbrun/PLIST
@@ -0,0 +1,4 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2002/06/12 00:36:21 wiz Exp $
+bin/bbrun
+share/doc/bbrun/README
+@dirrm share/doc/bbrun
diff --git a/wm/bbrun/distinfo b/wm/bbrun/distinfo
new file mode 100644
index 00000000000..be81b65ff2d
--- /dev/null
+++ b/wm/bbrun/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2002/06/12 00:36:21 wiz Exp $
+
+SHA1 (bbrun-1.3.tar.gz) = 719af622334f6c3186f07da7c9246a8b05381f6c
+Size (bbrun-1.3.tar.gz) = 19423 bytes
+SHA1 (patch-aa) = 728c220afe870f998d7772ab7c26fd170e734796
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)