diff options
author | alex <alex@FreeBSD.org> | 2000-07-19 13:18:16 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 2000-07-19 13:18:16 +0000 |
commit | b42342093103b68158c47b291f71560804f8a3f5 (patch) | |
tree | 2c645dc5e95a496d988d1209b3c48474af92b39a /x11-wm | |
parent | b8ee5a5cea4e1d431082b723c97eaad395b5e1c2 (diff) | |
download | FreeBSD-ports-b42342093103b68158c47b291f71560804f8a3f5.zip FreeBSD-ports-b42342093103b68158c47b291f71560804f8a3f5.tar.gz |
Add bbkeys 0.3.3 - a keygrabber for the Blackbox window manager.
PR: 19359
Submitted by: Patrick Seal <patseal@hyperhost.net>
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/Makefile | 1 | ||||
-rw-r--r-- | x11-wm/bbkeys/Makefile | 29 | ||||
-rw-r--r-- | x11-wm/bbkeys/distinfo | 1 | ||||
-rw-r--r-- | x11-wm/bbkeys/files/patch-aa | 37 | ||||
-rw-r--r-- | x11-wm/bbkeys/pkg-comment | 1 | ||||
-rw-r--r-- | x11-wm/bbkeys/pkg-descr | 6 | ||||
-rw-r--r-- | x11-wm/bbkeys/pkg-plist | 7 |
7 files changed, 82 insertions, 0 deletions
diff --git a/x11-wm/Makefile b/x11-wm/Makefile index 574af65..80af611 100644 --- a/x11-wm/Makefile +++ b/x11-wm/Makefile @@ -8,6 +8,7 @@ SUBDIR += afterstep-stable SUBDIR += amaterus SUBDIR += amiwm + SUBDIR += bbkeys SUBDIR += blackbox SUBDIR += ctwm SUBDIR += enlightenment diff --git a/x11-wm/bbkeys/Makefile b/x11-wm/bbkeys/Makefile new file mode 100644 index 0000000..96244cf --- /dev/null +++ b/x11-wm/bbkeys/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: bbkeys +# Date created: 17 June 2000 +# Whom: Patrick Seal <patseal@hyperhost.net> +# +# $FreeBSD$ +# + +PORTNAME= bbkeys +PORTVERSION= 0.3.3 +CATEGORIES= x11-wm +MASTER_SITES= ftp://ftp.cs.uct.ac.za/pub/FreeBSD/distfiles/ + +MAINTAINER= patseal@hyperhost.net + +RUN_DEPENDS= blackbox:${PORTSDIR}/x11-wm/blackbox + +USE_X_PREFIX= yes +GNU_CONFIGURE= yes +USE_QT2=yes + +do-build: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) + @(cd ${WRKSRC}/bbkeysconf-1.2; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET}) + +do-install: + @(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) + @(cd ${WRKSRC}/bbkeysconf-1.2 && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) + +.include <bsd.port.mk> diff --git a/x11-wm/bbkeys/distinfo b/x11-wm/bbkeys/distinfo new file mode 100644 index 0000000..4038e67 --- /dev/null +++ b/x11-wm/bbkeys/distinfo @@ -0,0 +1 @@ +MD5 (bbkeys-0.3.3.tar.gz) = 04f8798acddb6fc0e475e5f9ad74a2cb diff --git a/x11-wm/bbkeys/files/patch-aa b/x11-wm/bbkeys/files/patch-aa new file mode 100644 index 0000000..a70a456 --- /dev/null +++ b/x11-wm/bbkeys/files/patch-aa @@ -0,0 +1,37 @@ +--- bbkeysconf-1.2/Makefile.orig Wed May 17 00:33:45 2000 ++++ bbkeysconf-1.2/Makefile Sat Jun 17 17:56:39 2000 +@@ -1,11 +1,11 @@ +-CXX= /usr/bin/g++ +-QTDIR = /usr/lib/qt2 +-MOC = /usr/bin/moc +-LIBS = -L$(QTDIR)/lib -L/usr/lib -lqt +-CXXFLAGS = -g -I/usr/include -I$(QTDIR)/include -I/usr/X11R6/include ++CXX ?= /usr/bin/g++ ++QTDIR = /usr/X11R6 ++MOC = /usr/X11R6/bin/moc2 ++LIBS = -L$(QTDIR)/lib -lqt2 ++CXXFLAGS += -I$(QTDIR)/include -I$(QTDIR)/include/qt2 + + TARGET = bbkeysconf +-PREFIX = /usr/local/bin ++PREFIX ?= /usr/local + OBJECTS = gui.o main.o myapplication.o + SOURCES = gui.cc main.cc myapplication.cc + MOCSRC = gui.hh +@@ -37,13 +37,13 @@ + if ! test -x $(TARGET) ; then \ + exit; \ + fi; \ +- echo "Checking existance of $(PREFIX)...."; \ ++ echo "Checking existance of $(PREFIX)/bin...."; \ + if ! test -d $(PREFIX) ; then \ +- echo "Heyyyyy. $(PREFIX) doesn't exist. Creating it...."; \ +- /usr/bin/install -d $(PREFIX); \ ++ echo "Heyyyyy. $(PREFIX)/bin doesn't exist. Creating it...."; \ ++ /usr/bin/install -d $(PREFIX)/bin; \ + fi ; \ +- echo "Installing $(TARGET) in $(PREFIX)..."; \ +- /usr/bin/install -s $(TARGET) $(PREFIX)/$(TARGET) ++ echo "Installing $(TARGET) in $(PREFIX)/bin..."; \ ++ /usr/bin/install -s $(TARGET) $(PREFIX)/bin/$(TARGET) + diff --git a/x11-wm/bbkeys/pkg-comment b/x11-wm/bbkeys/pkg-comment new file mode 100644 index 0000000..cd6dec2 --- /dev/null +++ b/x11-wm/bbkeys/pkg-comment @@ -0,0 +1 @@ +A keygrabber for the Blackbox window manager diff --git a/x11-wm/bbkeys/pkg-descr b/x11-wm/bbkeys/pkg-descr new file mode 100644 index 0000000..3cf458b --- /dev/null +++ b/x11-wm/bbkeys/pkg-descr @@ -0,0 +1,6 @@ +A keygrabber for the Blackbox window manager. + +WWW: http://movingparts.windsofstorm.net + +- Patrick +patseal@hyperhost.net diff --git a/x11-wm/bbkeys/pkg-plist b/x11-wm/bbkeys/pkg-plist new file mode 100644 index 0000000..b90d40c --- /dev/null +++ b/x11-wm/bbkeys/pkg-plist @@ -0,0 +1,7 @@ +bin/bbkeys +bin/bbkeysConfigC +bin/bbkeysconf +share/bbtools/bbkeys.bb +share/bbtools/bbkeys.nobb +share/bbtools/README.bbkeys +@dirrm share/bbtools |