diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | b71a1d488b6b45e0a968a4c149990c25b6a09215 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /games/xdoom/Makefile | |
parent | 624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff) | |
download | pkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.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/xdoom/Makefile')
-rw-r--r-- | games/xdoom/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/xdoom/Makefile b/games/xdoom/Makefile index 299b92d1330..f06b7f7c1c1 100644 --- a/games/xdoom/Makefile +++ b/games/xdoom/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.34 2005/07/19 15:25:33 wiz Exp $ +# $NetBSD: Makefile,v 1.35 2005/12/05 20:50:18 rillig Exp $ DISTNAME= linuxdoom-1.10 PKGNAME= xdoom-1.10 @@ -12,7 +12,7 @@ MAINTAINER= root@garbled.net HOMEPAGE= http://www.idsoftware.com/archives/doomarc.html COMMENT= 3D shoot-em-up for 8-bit X11 displays -BUILD_DEPENDS= unzip-[0-9]*:../../archivers/unzip +BUILD_DEPENDS+= unzip-[0-9]*:../../archivers/unzip LICENSE= xdoom-license @@ -21,11 +21,11 @@ EXTRACT_ONLY= doomsrc.zip EXTRACT_CMD= unzip -qo ${DISTDIR}/${EXTRACT_ONLY} USE_X11BASE= yes USE_TOOLS+= gmake gunzip -MAKE_ENV+= X11BASE=${X11BASE} INSTALL_PREFIX=${PREFIX} +MAKE_ENV+= X11BASE=${X11BASE:Q} INSTALL_PREFIX=${PREFIX:Q} .include "../../mk/bsd.prefs.mk" -.ifdef ${OPSYS} == "Linux" +.if ${OPSYS} == "Linux" CFLAGS+= -DLINUX .endif |