8c676ee56b
PR#45763 by Bug Hunting. 4.2 This release contains plenty code cleanups. 4.2.1 Bug fix release, there were two missing files in yesterdays dmenu-4.2.tar.gz. 4.3 This is basically smaller and faster. 4.3.1 And a quick bugfix release. 4.4 This release fixes some bugs and it should be slightly nippier, especially if your path is, ahem, broken. 4.4.1 This release fixes a small bug in the font loading, and changes dmenu_run to let you use shell logic (foo && bar, etc).
24 lines
676 B
Makefile
24 lines
676 B
Makefile
# $NetBSD: options.mk,v 1.2 2012/01/22 12:59:01 obache Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.dmenu
|
|
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
|