mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
Add x11-wm/bbrun a run box for Blackbox
PR: 29462 Submitted by: Adam Weinberger <monkey@crackula.com>
This commit is contained in:
parent
d8000cd312
commit
96cdc05fc3
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=50837
@ -12,6 +12,7 @@
|
||||
SUBDIR += bbconf
|
||||
SUBDIR += bbkeys
|
||||
SUBDIR += bbpager
|
||||
SUBDIR += bbrun
|
||||
SUBDIR += blackbox
|
||||
SUBDIR += ctwm
|
||||
SUBDIR += e16utils
|
||||
|
31
x11-wm/bbrun/Makefile
Normal file
31
x11-wm/bbrun/Makefile
Normal file
@ -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>
|
1
x11-wm/bbrun/distinfo
Normal file
1
x11-wm/bbrun/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (bbrun-1.1.tar.gz) = 19264424d472d4de7336429ce507b206
|
29
x11-wm/bbrun/files/patch-Makefile
Normal file
29
x11-wm/bbrun/files/patch-Makefile
Normal file
@ -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
|
1
x11-wm/bbrun/pkg-comment
Normal file
1
x11-wm/bbrun/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
A Run box for Blackbox
|
9
x11-wm/bbrun/pkg-descr
Normal file
9
x11-wm/bbrun/pkg-descr
Normal file
@ -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
|
3
x11-wm/bbrun/pkg-plist
Normal file
3
x11-wm/bbrun/pkg-plist
Normal file
@ -0,0 +1,3 @@
|
||||
bin/bbrun
|
||||
%%PORTDOCS%%share/doc/bbrun/README
|
||||
%%PORTDOCS%%@dirrm share/doc/bbrun
|
31
x11/bbrun/Makefile
Normal file
31
x11/bbrun/Makefile
Normal file
@ -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>
|
1
x11/bbrun/distinfo
Normal file
1
x11/bbrun/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (bbrun-1.1.tar.gz) = 19264424d472d4de7336429ce507b206
|
29
x11/bbrun/files/patch-Makefile
Normal file
29
x11/bbrun/files/patch-Makefile
Normal file
@ -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
|
1
x11/bbrun/pkg-comment
Normal file
1
x11/bbrun/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
A Run box for Blackbox
|
9
x11/bbrun/pkg-descr
Normal file
9
x11/bbrun/pkg-descr
Normal file
@ -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
|
3
x11/bbrun/pkg-plist
Normal file
3
x11/bbrun/pkg-plist
Normal file
@ -0,0 +1,3 @@
|
||||
bin/bbrun
|
||||
%%PORTDOCS%%share/doc/bbrun/README
|
||||
%%PORTDOCS%%@dirrm share/doc/bbrun
|
Loading…
Reference in New Issue
Block a user