diff options
author | reed <reed@pkgsrc.org> | 2006-08-04 01:08:21 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2006-08-04 01:08:21 +0000 |
commit | 18e5315660f4f68a3fd6f08af66d9cf31ddf40ce (patch) | |
tree | 26ebbcfcb0df4be762747e9838b5ab2bea30a657 /wm/jwm/Makefile | |
parent | 1e240d4cd2cc68794e8084a29f762b73ef6bcc9a (diff) | |
download | pkgsrc-18e5315660f4f68a3fd6f08af66d9cf31ddf40ce.tar.gz |
Import jwm from pkgsrc-wip.
This was packaged by pip88nl of gmail.com with some minor changes
by me.
JWM is a light-weight window manager for the X11 Window System.
It provides a menu, taskbar, key binding, system notification tray,
pager, a dock, and simple customizations. JWM is written in C and
uses only Xlib and the shape extension, libXpm and (optionally)
libpng. It can support some MWM, GNOME, and WM Spec hints.
(This software needs some work, but I import to official pkgsrc
so it will get more usage. I have been using it for a couple
months now. With its built-in features, it is a smaller than
blackbox with add-ons.)
Diffstat (limited to 'wm/jwm/Makefile')
-rw-r--r-- | wm/jwm/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/wm/jwm/Makefile b/wm/jwm/Makefile new file mode 100644 index 00000000000..e55fc35a4d6 --- /dev/null +++ b/wm/jwm/Makefile @@ -0,0 +1,40 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/08/04 01:08:21 reed Exp $ +# + +DISTNAME= jwm-1.7 +CATEGORIES= wm x11 +MASTER_SITES= http://www.joewing.net/programs/jwm/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= pip88nl@gmail.com +HOMEPAGE= http://www.joewing.net/programs/jwm/ +COMMENT= Lightweight window manager with virtual desktops + +GNU_CONFIGURE= yes + +.include "../../mk/bsd.prefs.mk" + +.if exists(${X11BASE}/include/X11/extensions/Xinerama.h) +CONFIGURE_ARGS+= --enable-xinerama +# XXX maybe set some build variable about that +.endif + +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} + +SUBST_CLASSES+= egdir +SUBST_STAGE.egdir= pre-configure +SUBST_FILES.egdir= Makefile.in +SUBST_SED.egdir= -e 's,@@EGDIR@@,${EGDIR},g' + +PKG_SYSCONFSUBDIR= jwm +EGDIR= ${PREFIX}/share/examples/jwm +CONF_FILES= ${EGDIR}/system.jwmrc ${PKG_SYSCONFDIR}/system.jwmrc + +.include "options.mk" + +#.include "../../fonts/Xft2/buildlink3.mk" +#.include "../../graphics/xpm/buildlink3.mk" +.include "../../wip/libXft/buildlink3.mk" +.include "../../wip/libXpm/buildlink3.mk" +.include "../../mk/x11.buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |