95ec0595f4
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).
34 lines
822 B
Makefile
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
|