diff options
author | jschauma <jschauma> | 2002-11-20 18:13:37 +0000 |
---|---|---|
committer | jschauma <jschauma> | 2002-11-20 18:13:37 +0000 |
commit | c75a4db3440c3738d8c5f954b6a4750f2f100248 (patch) | |
tree | 94c8c01e51948ca6c6289d5f0c46aa4e7f820057 /wm/bsetroot | |
parent | 92c2d6f78ceba828ede634bd694c188cc06a2a4c (diff) | |
download | pkgsrc-c75a4db3440c3738d8c5f954b6a4750f2f100248.tar.gz |
Initial import of bsetroot into pkgsrc.
This package includes two tools, bsetbg and bsetroot, used by the Blackbox
windowmanager to set the root window's properties. Blackbox shares code
with the Openbox and Hackedbox window managers, which also utilize these
tools, allowing these window managers to share some themes as well.
Diffstat (limited to 'wm/bsetroot')
-rw-r--r-- | wm/bsetroot/DESCR | 4 | ||||
-rw-r--r-- | wm/bsetroot/Makefile | 28 | ||||
-rw-r--r-- | wm/bsetroot/PLIST | 5 | ||||
-rw-r--r-- | wm/bsetroot/distinfo | 5 | ||||
-rw-r--r-- | wm/bsetroot/patches/patch-aa | 20 |
5 files changed, 62 insertions, 0 deletions
diff --git a/wm/bsetroot/DESCR b/wm/bsetroot/DESCR new file mode 100644 index 00000000000..9fdb9ce14b1 --- /dev/null +++ b/wm/bsetroot/DESCR @@ -0,0 +1,4 @@ +This package includes two tools, bsetbg and bsetroot, used by the Blackbox +windowmanager to set the root window's properties. Blackbox shares code +with the Openbox and Hackedbox window managers, which also utilize these +tools, allowing these window managers to share some themes as well. diff --git a/wm/bsetroot/Makefile b/wm/bsetroot/Makefile new file mode 100644 index 00000000000..431b92a3900 --- /dev/null +++ b/wm/bsetroot/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/11/20 18:13:37 jschauma Exp $ +# + +DISTNAME= blackbox-0.65.0 +PKGNAME= bsetroot-0.1 +CATEGORIES= x11 wm +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=blackboxwm/} + +MAINTAINER= jschauma@netbsd.org +HOMEPAGE= http://blackboxwm.sourceforge.net/ +COMMENT= tools to set the root windows background + +USE_BUILDLINK2= yes +USE_X11BASE= yes +GNU_CONFIGURE= yes + +do-build: + ( cd ${WRKSRC}/nls && ${MAKE} && \ + cd ${WRKSRC}/util && ${MAKE} ) + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/util/bsetbg ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/util/bsetroot ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/doc/bsetbg.1 ${PREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/bsetroot.1 ${PREFIX}/man/man1 + +.include "../../devel/gettext-lib/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/wm/bsetroot/PLIST b/wm/bsetroot/PLIST new file mode 100644 index 00000000000..ae4eec35a27 --- /dev/null +++ b/wm/bsetroot/PLIST @@ -0,0 +1,5 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/11/20 18:13:37 jschauma Exp $ +bin/bsetbg +bin/bsetroot +man/man1/bsetbg.1 +man/man1/bsetroot.1 diff --git a/wm/bsetroot/distinfo b/wm/bsetroot/distinfo new file mode 100644 index 00000000000..90d8f534371 --- /dev/null +++ b/wm/bsetroot/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/11/20 18:13:37 jschauma Exp $ + +SHA1 (blackbox-0.65.0.tar.gz) = 903a35526b1c29912ca500b7f8c205368e60fc38 +Size (blackbox-0.65.0.tar.gz) = 292950 bytes +SHA1 (patch-aa) = 134f628eef5cec1e9d7ce4b95a57c7e35a2307d9 diff --git a/wm/bsetroot/patches/patch-aa b/wm/bsetroot/patches/patch-aa new file mode 100644 index 00000000000..bdb918a6779 --- /dev/null +++ b/wm/bsetroot/patches/patch-aa @@ -0,0 +1,20 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/11/20 18:13:37 jschauma Exp $ + +--- util/Makefile.in.orig Wed Nov 20 13:03:43 2002 ++++ util/Makefile.in Wed Nov 20 13:05:16 2002 +@@ -73,13 +73,13 @@ + gencat_cmd = @gencat_cmd@ + regex_cmd = @regex_cmd@ + +-CPPFLAGS = @CPPFLAGS@ @DEBUG@ @NLS@ @TIMEDCACHE@ @ORDEREDPSEUDO@ ++CPPFLAGS = @CPPFLAGS@ @DEBUG@ @NLS@ @TIMEDCACHE@ @ORDEREDPSEUDO@ -DLOCALEPATH=\"$(pkgdatadir)/nls\" + + bin_SCRIPTS = bsetbg + bin_PROGRAMS = bsetroot + + bsetroot_SOURCES = bsetroot.cc +-bsetroot_LDADD = ../src/BaseDisplay.o ../src/Color.o ../src/GCCache.o ../src/Texture.o ../src/Timer.o ../src/Image.o ../src/ImageControl.o ../src/i18n.o ../src/Util.o ++bsetroot_LDADD = BaseDisplay.o Color.o GCCache.o Texture.o Timer.o Image.o ImageControl.o i18n.o Util.o + + MAINTAINERCLEANFILES = Makefile.in + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs |