diff options
Diffstat (limited to 'x11')
-rw-r--r-- | x11/bbrun/Makefile | 31 | ||||
-rw-r--r-- | x11/bbrun/distinfo | 1 | ||||
-rw-r--r-- | x11/bbrun/files/patch-Makefile | 29 | ||||
-rw-r--r-- | x11/bbrun/pkg-comment | 1 | ||||
-rw-r--r-- | x11/bbrun/pkg-descr | 9 | ||||
-rw-r--r-- | x11/bbrun/pkg-plist | 3 |
6 files changed, 74 insertions, 0 deletions
diff --git a/x11/bbrun/Makefile b/x11/bbrun/Makefile new file mode 100644 index 000000000000..7e8095b39979 --- /dev/null +++ b/x11/bbrun/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: bbrun +# Date created: 3 August 2001 +# Whom: Adam Weinberger +# +# $FreeBSD$ +# + +PORTNAME= bbrun +PORTVERSION= 1.1 +CATEGORIES= x11-wm +MASTER_SITES= http://bbtools.windsofstorm.net/sources/contrib/ + +MAINTAINER= monkey@crackula.com + +RUN_DEPENDS= blackbox:${PORTSDIR}/x11-wm/blackbox + +USE_X_PREFIX= yes +USE_GTK= yes +USE_GMAKE= yes +WRKSRC= ${WRKDIR}/${DISTNAME}/bbrun + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/bbrun ${PREFIX}/bin + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/../README ${DOCSDIR} +.endif + +.include <bsd.port.mk> diff --git a/x11/bbrun/distinfo b/x11/bbrun/distinfo new file mode 100644 index 000000000000..87675e7a4d5c --- /dev/null +++ b/x11/bbrun/distinfo @@ -0,0 +1 @@ +MD5 (bbrun-1.1.tar.gz) = 19264424d472d4de7336429ce507b206 diff --git a/x11/bbrun/files/patch-Makefile b/x11/bbrun/files/patch-Makefile new file mode 100644 index 000000000000..6202e4ccc942 --- /dev/null +++ b/x11/bbrun/files/patch-Makefile @@ -0,0 +1,29 @@ +--- Makefile.orig Mon Oct 2 11:05:09 2000 ++++ Makefile Sat Dec 1 20:33:06 2001 +@@ -1,19 +1,21 @@ +-LIBDIR = -L/usr/X11R6/lib -L/usr/lib +-LIBS = -lXpm -lXext -lX11 -lm -lgtk -lgdk -rdynamic -lgmodule -lglib -ldl +-CFLAGS = -I/usr/X11R6/include -I/usr/lib/glib/include ++LIBDIR = -L${X11BASE}/lib -L${LOCALBASE}/lib ++LIBS = `${GTK_CONFIG} --libs` -rdynamic -lXpm ++CFLAGS += `${GTK_CONFIG} --cflags` -Wall + OBJS = bbrun.o \ + ../wmgeneral/wmgeneral.o \ + ../wmgeneral/misc.o \ + ../wmgeneral/list.o + + .c.o: +- cc -c -O2 -Wall $< -o $*.o $(CFLAGS) ++ $(CC) -c $< -o $*.o $(CFLAGS) + + bbrun: $(OBJS) +- cc -Wall -g -o bbrun $^ $(LIBDIR) $(LIBS) ++ $(CC) -o bbrun $^ $(LIBDIR) $(LIBS) + + clean:: + for i in $(OBJS) ; do \ + rm $$i; \ + done + rm bbrun ++ ++all: bbrun diff --git a/x11/bbrun/pkg-comment b/x11/bbrun/pkg-comment new file mode 100644 index 000000000000..99685f92c63c --- /dev/null +++ b/x11/bbrun/pkg-comment @@ -0,0 +1 @@ +A Run box for Blackbox diff --git a/x11/bbrun/pkg-descr b/x11/bbrun/pkg-descr new file mode 100644 index 000000000000..530451c8cd0e --- /dev/null +++ b/x11/bbrun/pkg-descr @@ -0,0 +1,9 @@ +bbrun is a Run box for the Blackbox windowmanager. It provides +a simple interface with which you can launch programs. It is +designed to be a part of the Slit. bbrun will maintain a history +file in $HOME/.bbrun_history + +WWW: http://bbtools.windsofstorm.net/ + +-Adam +monkey@crackula.com diff --git a/x11/bbrun/pkg-plist b/x11/bbrun/pkg-plist new file mode 100644 index 000000000000..7e4b2d595b89 --- /dev/null +++ b/x11/bbrun/pkg-plist @@ -0,0 +1,3 @@ +bin/bbrun +%%PORTDOCS%%share/doc/bbrun/README +%%PORTDOCS%%@dirrm share/doc/bbrun |