pkgsrc/wm/fluxbox/options.mk
tonio cb97fd8cf6 Update wm/fluxbox to 1.0rc2
Apply a patch by Dan Bilik to remove optimisation flags that cause compiler to
fail

Changelog contains many bugfixes and improvements:
- New resource/command: session.modKey, command SetModKey
- More ewmh support: _NET_WM_WINDOW_TYPE_DIALOG and  _NET_FRAME_EXTENTS
- External tabs are back
- Added support for net wm atoms
- Added new commands: ToggleCmd, CloseAllWindows
- Supports urgency hint ( flashing titlebar/iconbar )
- Pressing shift while pressing enter in menu item will fake a right mouse
  button press.
- Better UTF-8 handling
- Added option to reverse desktop wheeling: session.screen0.reversewheeling
- Vertical toolbar is back
2007-01-15 17:41:28 +00:00

40 lines
899 B
Makefile

# $NetBSD: options.mk,v 1.5 2007/01/15 17:41:28 tonio Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fluxbox
PKG_SUPPORTED_OPTIONS= gnome kde imlib2 xft xrender
PKG_SUGGESTED_OPTIONS= xrender
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mgnome)
CONFIGURE_ARGS+= --enable-gnome
.else
CONFIGURE_ARGS+= --disable-gnome
.endif
.if !empty(PKG_OPTIONS:Mkde)
CONFIGURE_ARGS+= --enable-kde
.else
CONFIGURE_ARGS+= --disable-kde
.endif
.if !empty(PKG_OPTIONS:Mimlib2)
CONFIGURE_ARGS+= --enable-imlib2
.include "../../graphics/imlib2/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-imlib2
.endif
.if !empty(PKG_OPTIONS:Mxft)
CONFIGURE_ARGS+= --enable-xft
.include "../../x11/libXft/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-xft
.endif
.if !empty(PKG_OPTIONS:Mxrender)
CONFIGURE_ARGS+= --enable-xrender
.include "../../x11/libXrender/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-xrender
.endif