diff options
author | alepulver <alepulver@FreeBSD.org> | 2006-07-29 06:59:40 +0800 |
---|---|---|
committer | alepulver <alepulver@FreeBSD.org> | 2006-07-29 06:59:40 +0800 |
commit | 85e18d0701f58efea99d055bda0325bf11bf0fe3 (patch) | |
tree | 995ea2e02286b075dca8c72c45d0399b8ae402fe /games | |
parent | 17630f45342a4d5c719e8c85f8b7f01de384d00b (diff) | |
download | freebsd-ports-gnome-85e18d0701f58efea99d055bda0325bf11bf0fe3.tar.gz freebsd-ports-gnome-85e18d0701f58efea99d055bda0325bf11bf0fe3.tar.zst freebsd-ports-gnome-85e18d0701f58efea99d055bda0325bf11bf0fe3.zip |
- Bump PORTREVISION.
- Don't build game.so by default (provided by "games/quake2-data").
Diffstat (limited to 'games')
-rw-r--r-- | games/r1q2/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/r1q2/Makefile b/games/r1q2/Makefile index 4318b9b6acc5..dd5ee4f6ff39 100644 --- a/games/r1q2/Makefile +++ b/games/r1q2/Makefile @@ -7,7 +7,7 @@ PORTNAME= r1q2 PORTVERSION= 6557 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://www.r1ch.net/stuff/r1q2/src/ DISTNAME= ${PORTNAME}-b${PORTVERSION}-src @@ -29,7 +29,7 @@ NO_WRKSUBDIR= yes OPTIONS= CLIENT "Build OpenGL client" on \ DEDICATED "Build dedicated server" on \ - GAME "Build main game modification" on \ + GAME "Build a main game .so file" off \ GLX "Build OpenGL renderer" on \ HTTP "Enable HTTP download support" on \ OPENAL "Enable OpenAL support" on \ @@ -77,7 +77,7 @@ R1Q2_BIN+= r1q2ded PLIST_SUB+= DEDICATED="@comment " .endif -.if !defined(WITHOUT_GAME) +.if defined(WITH_GAME) MAKE_ENV+= BUILD_GAME=YES PLIST_SUB+= GAME="" .else @@ -136,7 +136,7 @@ do-install: .for f in ${R1Q2_REF} ${INSTALL_PROGRAM} ${WRKSRC}/quake2/ref_${f}.so ${LIBDIR} .endfor -.if !defined(WITHOUT_GAME) +.if defined(WITH_GAME) ${INSTALL_PROGRAM} ${WRKSRC}/quake2/baseq2/game.so ${LIBDIR}/baseq2 .endif .if !defined(NOPORTDOCS) |