diff options
author | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-12-05 20:49:47 +0000 |
commit | b4f920543059af038598712771c3211999ef42a6 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /games/quake6 | |
parent | 5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff) | |
download | pkgsrc-b4f920543059af038598712771c3211999ef42a6.tar.gz |
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in
http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'games/quake6')
-rw-r--r-- | games/quake6/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/quake6/Makefile b/games/quake6/Makefile index 2644b2e1273..fef3ed78d44 100644 --- a/games/quake6/Makefile +++ b/games/quake6/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2005/06/01 18:02:52 jlam Exp $ +# $NetBSD: Makefile,v 1.30 2005/12/05 20:50:17 rillig Exp $ DISTNAME= quake-v6-bsd-kame PKGNAME= quake6-0.0 @@ -10,7 +10,7 @@ MAINTAINER= itojun@kame.net HOMEPAGE= http://www.viagenie.qc.ca/en/ipv6-quake.shtml COMMENT= Quake over IPv6 -DEPENDS= quakedata-[0-9]*:../../games/quakedata +DEPENDS+= quakedata-[0-9]*:../../games/quakedata WRKSRC= ${WRKDIR}/quakeforge @@ -25,7 +25,7 @@ GNU_CONFIGURE= yes BUILD_DEFS+= USE_INET6 .include "../../mk/bsd.prefs.mk" .if !(defined(USE_INET6) && ${USE_INET6} == "YES") -PKG_FAIL_REASON= "${PKGNAME} requires IPv6 support" +PKG_FAIL_REASON+= "${PKGNAME} requires IPv6 support" .endif # "bindir" setting is very non-standard for GNU autoconf |