From f33220370c7c8437f102326953e681e32ce16f81 Mon Sep 17 00:00:00 2001 From: Alexey Dokuchaev Date: Mon, 23 May 2005 07:02:19 +0000 Subject: [PATCH] - OPTION'ize - Add WITH_DITHER knob --- x11-wm/waimea/Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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 + .if !defined(WITHOUT_PIXMAP) LIB_DEPENDS+= Imlib2.3:${PORTSDIR}/graphics/imlib2 .endif -.include +.if defined(WITH_DITHER) +CONFIGURE_ARGS+= --enable-ordered-pseudo +.endif + +.include