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.)
19 lines
406 B
Makefile
19 lines
406 B
Makefile
# $NetBSD: options.mk,v 1.1.1.1 2006/08/04 01:08:21 reed Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.jwm
|
|
PKG_SUPPORTED_OPTIONS= debug png
|
|
PKG_SUGGESTED_OPTIONS= png
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpng)
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-png
|
|
.endif
|
|
|
|
# TODO: fribidi
|