2016-10-10 15:22:22 +02:00
|
|
|
# $NetBSD: options.mk,v 1.6 2016/10/10 13:22:22 tsutsui Exp $
|
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.)
2006-08-04 03:08:21 +02:00
|
|
|
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.jwm
|
2016-10-10 15:22:22 +02:00
|
|
|
PKG_SUPPORTED_OPTIONS= debug fribidi jpeg png svg
|
|
|
|
PKG_SUGGESTED_OPTIONS= fribidi jpeg png svg
|
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.)
2006-08-04 03:08:21 +02:00
|
|
|
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
|
|
.endif
|
|
|
|
|
2008-06-17 02:00:30 +02:00
|
|
|
.if !empty(PKG_OPTIONS:Mfribidi)
|
|
|
|
.include "../../converters/fribidi/buildlink3.mk"
|
Update jwm to 2.2.0.
Changelog per http://joewing.net/projects/jwm/release-2.2.shtml
New Features
Added support for _NET_SHOWING_DESKTOP, _NET_WM_ACTION_ABOVE, _NET_WM_ACTION_BELOW, _NET_WM_STATE_SKIP_PAGER, and _NET_REQUEST_FRAME_EXTENTS.
JWM now uses xrender for image scaling
Added native language support using GNU gettext.
Added a fullscreen keybinding.
Added the "-reload" command line option to force JWM to reload the menus without restarting.
Added a width attribute to docks.
Better tray support for multiple monitors.
Added a tray spacer component (Spacer).
Added support for changes in root window resolution/orientation.
JWM now supports resizable icons for window border buttons
Add support for SVG icons using libRSVG and Cairo.
Added the noshade group option
Minor changes to mouse bindings on window frames.
Added support for the urgency hint as well as a group option, noturgent to disable it. JWM will now flash the borders of windows that set the urgency hint set unless the noturgent option is set.
Added centered and tiled window placement group options.
Added the iignore group option to ignore increment size hint when maximizing a window.
Added support for gradients in trays.
Add the constrain group option to prevent windows from moving themselves off screen.
It is now possible to use icons of any type for title bar buttons.
Configuration Changes
The way windows are associated with groups has changed. Now within a Group tag, if one or more Name tags is specified, a client window must match at least one to be considered part of the group. Likewise, if one or more Class tags is specified, a program must match at least one. If no tag is specified, all client windows will match.
The name and class fields in Group tags are now treated as POSIX regular expressions.
The number of supported window layers has been reduced to 3. Rather than a number between 0 and 12, JWM now uses above, normal, and below.
JWM no longer allows custom window buttons. These buttons are now custom drawn to an appropriate size using X graphics primitives.
The information in TrayButtonStyle is now inherited from TrayStyle instead of TaskListStyle. This means that tray buttons now get defaults from the tray instead of from the task list. In addition, it is now possible to specify ActiveBackground and ActiveForeground in TrayStyle. This makes it possible to set defaults for both tray buttons and task list buttons in TrayStyle.
New Translations
Dutch (by Bert)
French (by Pierrick Pinot)
German (by fido <L18L@puppy.forum>)
Italian (by Man from Mars)
Polish (by Mis Uszatek)
Portuguese/Portugal (by Vitor Lopes)
Russian (by Aleksandr Samusenko)
Spanish (by Victor Martinez)
Bug Fixes
Fixed issues with maximize and fullscreen
Fixed issues with input focus
Fixed issues with mapping of windows in some applications
Fixed some timezone issues
Fixed an issue with docks when JWM restarts
Windows can now be made larger than the root screen
Set _NET_CURRENT_DESKTOP at startup
Rendering changes to allow JWM to run in Xnest
Fixed a bug with XML entity parsing
Fixed bi-directional text rendering
Performance improvements
2014-01-19 16:27:16 +01:00
|
|
|
BUILDLINK_API_DEPENDS.fribidi+= fribidi>=0.19.2
|
2016-10-10 15:22:22 +02:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-fribidi
|
2008-06-17 02:00:30 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !empty(PKG_OPTIONS:Mjpeg)
|
2010-12-23 12:44:24 +01:00
|
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
2016-10-10 15:22:22 +02:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-jpeg
|
2008-06-17 02:00:30 +02:00
|
|
|
.endif
|
|
|
|
|
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.)
2006-08-04 03:08:21 +02:00
|
|
|
.if !empty(PKG_OPTIONS:Mpng)
|
|
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
|
|
.else
|
2007-02-22 20:26:05 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-png
|
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.)
2006-08-04 03:08:21 +02:00
|
|
|
.endif
|
2016-10-10 15:22:22 +02:00
|
|
|
|
|
|
|
.if !empty(PKG_OPTIONS:Msvg)
|
|
|
|
.include "../../graphics/librsvg/buildlink3.mk"
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-rsvg
|
|
|
|
.endif
|