pkgsrc/wm/dwm/options.mk
obache 2e21b3e055 Update dwm to 5.8.2.
with minor two fixes.
PR#44987 by Bug Hunting

5.8.2  30 May 2010

  Changes: Implemented better fullscreen handling.

5.8.1  29 May 2010 18:29

 Changes: Yesterday's fullscreen fixes broke certain fullscreen capabilities
 that worked correctly for mplayer and other tools. This is fixed in this
 release.

5.8    28 May 2010 15:11

 Changes: This release fixes several fullscreen application bugs and contains
 various code cleanups.
2011-06-17 11:59:57 +00:00

24 lines
674 B
Makefile

# $NetBSD: options.mk,v 1.2 2011/06/17 11:59:57 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.dwm
PKG_SUPPORTED_OPTIONS= xinerama
PKG_SUGGESTED_OPTIONS= xinerama
.include "../../mk/bsd.options.mk"
#
# Xinerama support
#
# If we don't want the Xinerama support we delete XINERAMALIBS and
# XINERAMAFLAGS lines, otherwise the Xinerama support is the default.
#
.if !empty(PKG_OPTIONS:Mxinerama)
. include "../../x11/libXinerama/buildlink3.mk"
.else
SUBST_CLASSES+= options
SUBST_STAGE.options= pre-build
SUBST_MESSAGE.options= Toggle the Xinerama support
SUBST_FILES.options= config.mk
SUBST_SED.options+= -e '/^XINERAMA/d'
. include "../../x11/libX11/buildlink3.mk"
.endif