# JWM v2.0 <> 20070624 * New look. * Background support on a per-desktop basis. * Veritcal/horizontal maximization support. * Added the ability to move windows with the pager. * Many bug fixes. # JWM v2.0.1 <> 20070704 * Fix a file descriptor leak when JPEG is enabled. * Give swallow windows time to map when restarting.
25 lines
577 B
Makefile
25 lines
577 B
Makefile
# $NetBSD: options.mk,v 1.3 2008/06/17 00:00:30 abs Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.jwm
|
|
PKG_SUPPORTED_OPTIONS= debug fribidi jpeg png
|
|
PKG_SUGGESTED_OPTIONS= fribidi jpeg png
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mfribidi)
|
|
.include "../../converters/fribidi/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mjpeg)
|
|
.include "../../graphics/jpeg/buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpng)
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-png
|
|
.endif
|