f20a96b197
pkgsrc changes: - make po/Makefile.in.in work with newer autoconf Upstream changes: (from http://joewing.net/projects/jwm/release-2.4.html) JWM v2.4 Release Notes This is a collection of major changes between JWM v2.3 and JWM v2.4. Version 2.4.0 was released 20211107. New Features * Mouse bindings are now configurable (issue #11). * Added key bindings (send#) to send a window to a particular desktop (issue #395). * Added ~/.config/jwm/jwmrc as the new default location for per-user configuration (issue #394). * Maximized windows once again have borders and can be resized (issue #392). * The placement of window buttons is now configurable (issue #19). * Restored automatic tray "autohide" functionality using autohide="on" (issue #398). * Added support for CDATA to the XML parser (issue #344). * Moved the group and list attributes to the TaskListStyle tag (issue #309). * Added key bindings to resize a window from a specific corner or side (issue #409). * Add Type tag to Group (issue #453, patch from rdnvndr). Configuration Changes The following XSLT is available to update JWM v2.3 configuration files for use with JWM v2.4: jwm-2.4.xslt. To convert an existing v2.3 configuration file using xsltproc, run: cp ~/.jwmrc ~/.jwmrc.old xsltproc jwm-2.4.xslt ~/.jwmrc.old > ~/.jwmrc If you have multiple configuration files, it may be necessary to apply the XSLT to some or all of them depending on what configuration options are stored in the file. A summary of configuration changes follows. * The group and list attributes have moved to the TaskListStyle tag. See the configuration documentation for documentation on all configuration options. Bug Fixes * Don't SetDefaultCursor in AddClientToWindow (issue #521). * Use pango to address font fixes (issues #502, #498, and #337). * Fix for large titles that are centered or right aligned (issue #479, patch from rdnvndr). * Fix tooltip delay (issue #431). Updated Translations * Portuguese (Hugo Carvalho) * Portuguese Brazil (marcelo cripe) * Turkish (Cihan Alkan) * Spanish (PAblo Roberto Francisco Lezaeta Reyes) * Danish (scootergrisen) * Lithuanian (Moo)
35 lines
773 B
Makefile
35 lines
773 B
Makefile
# $NetBSD: options.mk,v 1.7 2021/11/14 18:42:27 tsutsui Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.jwm
|
|
PKG_SUPPORTED_OPTIONS= debug cairo jpeg png svg
|
|
PKG_SUGGESTED_OPTIONS= cairo jpeg png svg
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mcairo)
|
|
.include "../../graphics/cairo/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-cairo
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mjpeg)
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-jpeg
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpng)
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-png
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Msvg)
|
|
.include "../../graphics/librsvg/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-rsvg
|
|
.endif
|