pkgsrc-wip/fluxbox/options.mk
Vitaly Shevtsov 95ec0595f4 Import fluxbox-1.3.2nb1 as wip/fluxbox.
Fluxbox is yet another windowmanager for X.

It is based on the Blackbox 0.61.1 code. Fluxbox looks like blackbox and
handles styles, colors, window placement, and similar things exactly like
blackbox (100% theme/style compatibility).
2011-11-19 20:25:26 +00:00

34 lines
822 B
Makefile

# $NetBSD: options.mk,v 1.1.1.1 2011/11/19 20:25:26 lokivit Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fluxbox
PKG_SUPPORTED_OPTIONS= imlib2 xft xrender bidi
PKG_SUGGESTED_OPTIONS= xrender xft bidi
.include "../../mk/bsd.options.mk"
.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
.if !empty(PKG_OPTIONS:Mbidi)
CONFIGURE_ARGS+= --enable-fribidi
.else
CONFIGURE_ARGS+= --disable-fribibi
.endif