diff options
author | krion <krion@FreeBSD.org> | 2003-12-04 18:16:40 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-12-04 18:16:40 +0800 |
commit | 5990ff808d5bf41f3813c20dfb1344a27fdda788 (patch) | |
tree | fbc36e3aed80d4e7b051e40e6bdb8c1e3aa463dd /games/xqf/Makefile | |
parent | 18392fe20fc45141f651a53899f4e85140f536d0 (diff) | |
download | freebsd-ports-gnome-5990ff808d5bf41f3813c20dfb1344a27fdda788.tar.gz freebsd-ports-gnome-5990ff808d5bf41f3813c20dfb1344a27fdda788.tar.zst freebsd-ports-gnome-5990ff808d5bf41f3813c20dfb1344a27fdda788.zip |
- Update to version 0.9.13
PR: 59752
Submitted by: Ports Fury
Diffstat (limited to 'games/xqf/Makefile')
-rw-r--r-- | games/xqf/Makefile | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/games/xqf/Makefile b/games/xqf/Makefile index 8fdda0e858f2..149ab57294c4 100644 --- a/games/xqf/Makefile +++ b/games/xqf/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xqf -PORTVERSION= 0.9.12 +PORTVERSION= 0.9.13 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,13 +16,37 @@ COMMENT= Find quake servers RUN_DEPENDS= qstat:${PORTSDIR}/games/qstat -USE_GNOME= gdkpixbuf gnometarget +USE_GETOPT_LONG= yes +USE_GNOME= gnometarget GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" + +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" MAN6= xqf.6 +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib + +.if defined(WITH_GTK2) +USE_GNOME+= gtk20 +CONFIGURE_ARGS+= --enable-gtk2 +.else +USE_GNOME+= gdkpixbuf +.endif + +.if defined(WITH_GEOIP) +LIB_DEPENDS+= GeoIP.3:${PORTSDIR}/net/GeoIP +.else +CONFIGURE_ARGS+= --disable-geoip +.endif + +.if !defined(WITHOUT_BZIP2) +CONFIGURE_ARGS+= --enable-bzip2 +.if !exists(/usr/bin/bzip2) +RUN_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2 +.endif +.endif + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |