diff options
author | rillig <rillig> | 2006-04-22 09:22:05 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-04-22 09:22:05 +0000 |
commit | 1bf12f54d752f34431e029c366efad2fb372519b (patch) | |
tree | 7693d63ffaaa57cf44393c3f1b19100370b24b85 /games/quake3server | |
parent | 5e6ac2b5cb9b127db4bb3a69a03e450a9c8895cd (diff) | |
download | pkgsrc-1bf12f54d752f34431e029c366efad2fb372519b.tar.gz |
Removed the superfluous "quotes" and 'quotes' from variables that don't
need them, for example RESTRICTED and SUBST_MESSAGE.*.
Diffstat (limited to 'games/quake3server')
-rw-r--r-- | games/quake3server/Makefile.common | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/games/quake3server/Makefile.common b/games/quake3server/Makefile.common index 3f65f927818..667d96f1ca7 100644 --- a/games/quake3server/Makefile.common +++ b/games/quake3server/Makefile.common @@ -1,14 +1,15 @@ -# $NetBSD: Makefile.common,v 1.3 2004/01/25 03:48:58 xtraeme Exp $ +# $NetBSD: Makefile.common,v 1.4 2006/04/22 09:22:09 rillig Exp $ -NO_BUILD= yes -Q3ROOTDIR= ${PREFIX}/lib/lokigames/quake3server +NO_BUILD= yes +Q3ROOTDIR= ${PREFIX}/lib/lokigames/quake3server ONLY_FOR_PLATFORM= NetBSD-*-i386 -RESTRICTED= "Size; the data set is much too big" -NO_SRC_ON_CDROM= ${RESTRICTED} -NO_BIN_ON_CDROM= ${RESTRICTED} -NO_BIN_ON_FTP= ${RESTRICTED} -NO_SRC_ON_FTP= ${RESTRICTED} +RESTRICTED= Size; the data set is much too big +NO_SRC_ON_CDROM= ${RESTRICTED} +NO_BIN_ON_CDROM= ${RESTRICTED} +NO_BIN_ON_FTP= ${RESTRICTED} +NO_SRC_ON_FTP= ${RESTRICTED} + +DEPENDS+= suse_base>=6.3:../../emulators/${SUSE_DIR_PREFIX}_base -DEPENDS+= suse_base>=6.3:../../emulators/${SUSE_DIR_PREFIX}_base .include "../../emulators/suse_linux/Makefile.application" |