diff options
author | ghen <ghen@pkgsrc.org> | 2006-03-11 10:07:49 +0000 |
---|---|---|
committer | ghen <ghen@pkgsrc.org> | 2006-03-11 10:07:49 +0000 |
commit | a527d84ce0123fb8dc070f189fece884178a5b96 (patch) | |
tree | 9825bc45aa84169ac0e533e81c0c40931c03a653 /graphics | |
parent | 1201f6fa6d70310f4959bf4d12fa53dc86569a34 (diff) | |
download | pkgsrc-a527d84ce0123fb8dc070f189fece884178a5b96.tar.gz |
Convert all packages using REPLACE_INTERPRETER to the new variable names
without underscores (REPLACE.*.old, REPLACE.*.new, and REPLACE_FILES.*).
Also convert REPLACE.*.new= ${SH:Q} back to ${SH}, as it should not be quoted
here, if at all.
Ok with rillig.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/aview/Makefile | 8 | ||||
-rw-r--r-- | graphics/netpbm/Makefile | 24 |
2 files changed, 16 insertions, 16 deletions
diff --git a/graphics/aview/Makefile b/graphics/aview/Makefile index 9cf0ab53a4d..306e6263e9f 100644 --- a/graphics/aview/Makefile +++ b/graphics/aview/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2006/03/09 14:50:31 ghen Exp $ +# $NetBSD: Makefile,v 1.18 2006/03/11 10:07:50 ghen Exp $ # DISTNAME= aview-1.3.0rc1 @@ -32,9 +32,9 @@ SUBST_SED.programs+= -e 's,@BIN_PROGRAMS@,aview,g' .endif REPLACE_INTERPRETER+= bash -_REPLACE.bash.old= /bin/bash -_REPLACE.bash.new+= ${SH:Q} -_REPLACE_FILES.bash= asciiview +REPLACE.bash.old= /bin/bash +REPLACE.bash.new= ${SH} +REPLACE_FILES.bash= asciiview post-install: @${CP} ${PKGDIR}/PLIST ${PLIST_SRC} diff --git a/graphics/netpbm/Makefile b/graphics/netpbm/Makefile index 6b656b43634..b1ec4824207 100644 --- a/graphics/netpbm/Makefile +++ b/graphics/netpbm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.134 2006/03/09 14:05:14 ghen Exp $ +# $NetBSD: Makefile,v 1.135 2006/03/11 10:07:50 ghen Exp $ DISTNAME= netpbm-10.32 CATEGORIES= graphics @@ -29,17 +29,17 @@ MAKE_ENV+= NETWORKLD=${LIBS:M*:Q} # bash for all of the shell scripts. # REPLACE_INTERPRETER+= bash -_REPLACE.bash.old= .*/bin/sh -_REPLACE.bash.new= ${TOOLS_PATH.bash} -_REPLACE_FILES.bash= converter/other/anytopnm -_REPLACE_FILES.bash+= converter/other/pnmtoplainpnm -_REPLACE_FILES.bash+= converter/ppm/hpcdtoppm/hpcdtoppm -_REPLACE_FILES.bash+= converter/ppm/hpcdtoppm/pcdovtoppm -_REPLACE_FILES.bash+= editor/pamstretch-gen -_REPLACE_FILES.bash+= editor/pnmindex.sh -_REPLACE_FILES.bash+= editor/pnmmargin -_REPLACE_FILES.bash+= editor/ppmquantall -_REPLACE_FILES.bash+= other/ppmtomap +REPLACE.bash.old= .*/bin/sh +REPLACE.bash.new= ${TOOLS_PATH.bash} +REPLACE_FILES.bash= converter/other/anytopnm +REPLACE_FILES.bash+= converter/other/pnmtoplainpnm +REPLACE_FILES.bash+= converter/ppm/hpcdtoppm/hpcdtoppm +REPLACE_FILES.bash+= converter/ppm/hpcdtoppm/pcdovtoppm +REPLACE_FILES.bash+= editor/pamstretch-gen +REPLACE_FILES.bash+= editor/pnmindex.sh +REPLACE_FILES.bash+= editor/pnmmargin +REPLACE_FILES.bash+= editor/ppmquantall +REPLACE_FILES.bash+= other/ppmtomap .include "../../mk/bsd.prefs.mk" |