diff options
author | shaun <shaun@FreeBSD.org> | 2006-08-16 11:58:35 +0000 |
---|---|---|
committer | shaun <shaun@FreeBSD.org> | 2006-08-16 11:58:35 +0000 |
commit | 1d17e4ee0c69c28a50e775ab0ea47c45821d8893 (patch) | |
tree | 67a199298d2946570c24d34bb41a18c30e0704a3 /games | |
parent | 2b3256f7f6978c0dcd1fb8dc6c9541ffc889e308 (diff) | |
download | FreeBSD-ports-1d17e4ee0c69c28a50e775ab0ea47c45821d8893.zip FreeBSD-ports-1d17e4ee0c69c28a50e775ab0ea47c45821d8893.tar.gz |
- Chase GeoIP shared library version bump.
- Fix incorrectly implemented OPTIONS check.
Reported by: kris
Diffstat (limited to 'games')
-rw-r--r-- | games/xqf/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/xqf/Makefile b/games/xqf/Makefile index 9cf0e66..c74c49f 100644 --- a/games/xqf/Makefile +++ b/games/xqf/Makefile @@ -7,7 +7,7 @@ PORTNAME= xqf PORTVERSION= 1.0.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -36,15 +36,15 @@ OPTIONS= GTK2 "GTK+ 2.0 support" on \ .include <bsd.port.pre.mk> -.if defined(WITH_GTK2) +.if !defined(WITHOUT_GTK2) USE_GNOME+= gtk20 CONFIGURE_ARGS+= --enable-gtk2 .else USE_GNOME+= gdkpixbuf .endif -.if defined(WITH_GEOIP) -LIB_DEPENDS+= GeoIP.4:${PORTSDIR}/net/GeoIP +.if !defined(WITHOUT_GEOIP) +LIB_DEPENDS+= GeoIP.5:${PORTSDIR}/net/GeoIP .else CONFIGURE_ARGS+= --disable-geoip .endif |