aboutsummaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
authoralepulver <alepulver@FreeBSD.org>2006-04-25 05:07:27 +0800
committeralepulver <alepulver@FreeBSD.org>2006-04-25 05:07:27 +0800
commit8cf15bbca667284f3fa66b7788ac19de2f3fa6d3 (patch)
treeffa1c40c7e61484182dff1aa383f87abe77fb0a4 /games
parent3dc198d4948187a28a23f967b5fa62012121d5ac (diff)
downloadfreebsd-ports-graphics-8cf15bbca667284f3fa66b7788ac19de2f3fa6d3.tar.gz
freebsd-ports-graphics-8cf15bbca667284f3fa66b7788ac19de2f3fa6d3.tar.zst
freebsd-ports-graphics-8cf15bbca667284f3fa66b7788ac19de2f3fa6d3.zip
- Change BROKEN to IGNORE.
- Fix OPTIONS handling. - Bump PORTREVISION. Approved by: garga (mentor)
Diffstat (limited to 'games')
-rw-r--r--games/freedroidrpg/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/games/freedroidrpg/Makefile b/games/freedroidrpg/Makefile
index 04b66585e8d..7f847e3260a 100644
--- a/games/freedroidrpg/Makefile
+++ b/games/freedroidrpg/Makefile
@@ -7,7 +7,7 @@
PORTNAME= freedroidrpg
PORTVERSION= 0.9.13
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= freedroid
@@ -32,10 +32,10 @@ OPTIONS= BACKTRACE "Use backtrace() to generate nice bug reports" on \
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
-BROKEN= "does not compile (missing fenv.h)"
+IGNORE= does not compile on FreeBSD < 5.X (missing fenv.h)
.endif
-.if defined(WITH_BACKTRACE)
+.if !defined(WITHOUT_BACKTRACE)
LIB_DEPENDS+= execinfo.1:${PORTSDIR}/devel/libexecinfo
CONFIGURE_ARGS+=--enable-backtrace
STRIP= # keep debugging symbols
@@ -43,7 +43,7 @@ STRIP= # keep debugging symbols
CONFIGURE_ARGS+=--disable-backtrace
.endif
-.if defined(WITH_EDITORS)
+.if !defined(WITHOUT_EDITORS)
USE_GNOME+= gtk12
CONFIGURE_ARGS+=--enable-editors
PLIST_SUB+= EDITORS=""
@@ -52,7 +52,7 @@ CONFIGURE_ARGS+=--disable-editors
PLIST_SUB+= EDITORS="@comment "
.endif
-.if defined(WITH_OPENGL)
+.if !defined(WITHOUT_OPENGL)
USE_GL= yes
CONFIGURE_ARGS+=--enable-opengl
.else