From 01cd67a1618e64e40d48d9582e50dd2e012c5004 Mon Sep 17 00:00:00 2001 From: Matthew Hunt Date: Mon, 27 Jan 2003 23:16:46 +0000 Subject: [PATCH] Provide a WITHOUT_X11 option. PR: ports/45960 Submitted by: Lev A. Serbryakov --- games/angband/Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/games/angband/Makefile b/games/angband/Makefile index 861683c9e5a7..be0cddb33d19 100644 --- a/games/angband/Makefile +++ b/games/angband/Makefile @@ -14,8 +14,18 @@ MASTER_SITES= ftp://clockwork.dementia.org/angband/Source/ \ MAINTAINER= mph@freebsd.org GNU_CONFIGURE= yes +.if !defined(WITHOUT_X11) USE_XLIB= yes - CONFIGURE_ARGS= --with-setgid=games --with-x +.else +CONFIGURE_ARGS= --with-setgid=games --with-x=no +.endif + +pre-fetch: +.if !defined(WITHOUT_X11) + @${ECHO_MSG} "You could define WITHOUT_X11, if you don't want X support" +.else + @${ECHO_MSG} "Building without X support" +.endif .include