pkgsrc/wm/echinus/options.mk
obache 0ae65b20af Import echinus-0.3.8 as wm/echinus.
Based on PR 42188 by Alexander Polakov.

echinus is a dynamic window manager for X11 supporting managing window
s in floating, tiled and maximized layouts based on dwm. All the
configuration is made via config file in Xresources format, so it is
not necessary to recompile echinus every time you change something.

echinus supports a small subset of EWMH to be compatible with external
panels and pagers. It draws a border around windows and also an
optional title bar. The goal of development is a small, fast
window manager without features not strictly related to window
management (menus, panels, etc.)
2009-11-02 04:15:51 +00:00

24 lines
677 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2009/11/02 04:15:51 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.echinus
PKG_SUPPORTED_OPTIONS= xrandr
PKG_SUGGESTED_OPTIONS= xrandr
.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:Mxrandr)
. include "../../x11/libXrandr/buildlink3.mk"
.else
SUBST_CLASSES+= options
SUBST_STAGE.options= pre-build
SUBST_MESSAGE.options= Toggle Xrandr support
SUBST_FILES.options= config.mk
SUBST_SED.options+= -e '/XRANDR/ d;/Xrandr/ d'
. include "../../x11/libX11/buildlink3.mk"
.endif