summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorAlejandro Pulver <alepulver@FreeBSD.org>2007-01-05 16:18:15 +0000
committerAlejandro Pulver <alepulver@FreeBSD.org>2007-01-05 16:18:15 +0000
commit6e391907fcfb1a4c73db0e1ef66a299ded65d11c (patch)
tree3c82e510f322432ca0aa3fa5f8a24bf03d851fb1 /games
parent2006-12-01 multimedia/bsdav: does not work. We need to import bktv patches fr... (diff)
- Only define USE_GL when needed.
- Fix OPTIONS handling for GAME (was turned off by default some time ago).
Notes
Notes: svn path=/head/; revision=181527
Diffstat (limited to 'games')
-rw-r--r--games/qudos/Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/games/qudos/Makefile b/games/qudos/Makefile
index 345f65ae5575..d8ce2beb6034 100644
--- a/games/qudos/Makefile
+++ b/games/qudos/Makefile
@@ -20,7 +20,6 @@ COMMENT= Enhaced OpenGL only Quake II engine
USE_BZIP2= yes
USE_GCC= 3.4+
-USE_GL= yes
USE_GMAKE= yes
OPTIONS= 3ZB2 "Build 3zb2 modification (bots)" on \
@@ -77,10 +76,6 @@ LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg \
USE_SDL= sdl
.endif
-.if !defined(WITHOUT_CLIENT)
-LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis
-.endif
-
.if defined(WITH_ARTS)
LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts
MAKE_ENV+= BUILD_ARTS_SND=YES
@@ -92,6 +87,7 @@ PLIST_SUB+= ARTS="@comment "
.endif
.if !defined(WITHOUT_CLIENT)
+LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis
MAKE_ENV+= BUILD_QUAKE2=YES
PLIST_SUB+= CLIENT=""
Q2BIN+= ${PORTNAME}
@@ -109,7 +105,7 @@ MAKE_ENV+= BUILD_DEDICATED=NO
PLIST_SUB+= DEDICATED="@comment "
.endif
-.if !defined(WITHOUT_GAME)
+.if defined(WITH_GAME)
MAKE_ENV+= BUILD_GAME=YES
PLIST_SUB+= GAME=""
.else