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/xemeraldia | |
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/xemeraldia')
-rw-r--r-- | games/xemeraldia/Makefile | 6 | ||||
-rw-r--r-- | games/xemeraldia/PLIST | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/games/xemeraldia/Makefile b/games/xemeraldia/Makefile index 542ca6d82fb..ebdf42daa22 100644 --- a/games/xemeraldia/Makefile +++ b/games/xemeraldia/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2005/03/24 21:12:54 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2005/12/05 20:50:18 rillig Exp $ DISTNAME= xemeraldia-0.3 PKGNAME= xemeraldia-0.31 @@ -16,8 +16,8 @@ USE_IMAKE= yes BUILD_TARGET= xemeraldia GAMES_DIR= share/games -MAKE_ENV+= GAMES_DIR="${GAMES_DIR}" -PLIST_SUBST= GAMES_DIR="${GAMES_DIR}" +MAKE_ENV+= GAMES_DIR=${GAMES_DIR:Q} +PLIST_SUBST= GAMES_DIR=${GAMES_DIR:Q} post-install: @${INSTALL_DATA_DIR} ${PREFIX}/${GAMES_DIR}/xemeraldia diff --git a/games/xemeraldia/PLIST b/games/xemeraldia/PLIST index d513dda7b0c..572a7c3368a 100644 --- a/games/xemeraldia/PLIST +++ b/games/xemeraldia/PLIST @@ -1,8 +1,8 @@ -@comment $NetBSD: PLIST,v 1.4 2002/06/26 10:29:43 seb Exp $ +@comment $NetBSD: PLIST,v 1.5 2005/12/05 20:50:18 rillig Exp $ bin/xemeraldia lib/X11/app-defaults/XEmeraldia @exec ${MKDIR} %D/${GAMES_DIR}/xemeraldia @exec touch -f %D/${GAMES_DIR}/xemeraldia/xemeraldia.scores @exec ${CHMOD} 666 %D/${GAMES_DIR}/xemeraldia/xemeraldia.scores @unexec ${RM} -f %D/${GAMES_DIR}/xemeraldia/xemeraldia.scores -@unexec ${RMDIR} %D/${GAMES_DIR}/xemeraldia +@dirrm ${GAMES_DIR}/xemeraldia |