diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-05-23 07:02:19 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2005-05-23 07:02:19 +0000 |
commit | f33220370c7c8437f102326953e681e32ce16f81 (patch) | |
tree | 8012ac8bc11f5c1945f819dcd34c7916f2a7bce8 /x11-wm | |
parent | bfdc60bf5fbe1ed011973b225ddf9e3fe9bd54c4 (diff) |
Notes
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/waimea/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/x11-wm/waimea/Makefile b/x11-wm/waimea/Makefile index ec3ad51ffb57..4fb5ee41452d 100644 --- a/x11-wm/waimea/Makefile +++ b/x11-wm/waimea/Makefile @@ -26,8 +26,17 @@ GNU_CONFIGURE= yes MAN1= waimea.1 +OPTIONS= PIXMAP "Build with pixmap textures support" on \ + DITHER "Enable ordered pseudocolor dithering" off + +.include <bsd.port.pre.mk> + .if !defined(WITHOUT_PIXMAP) LIB_DEPENDS+= Imlib2.3:${PORTSDIR}/graphics/imlib2 .endif -.include <bsd.port.mk> +.if defined(WITH_DITHER) +CONFIGURE_ARGS+= --enable-ordered-pseudo +.endif + +.include <bsd.port.post.mk> |