summaryrefslogtreecommitdiff
path: root/editors/xemacs-packages
diff options
context:
space:
mode:
authorrodent <rodent>2013-04-06 13:24:18 +0000
committerrodent <rodent>2013-04-06 13:24:18 +0000
commita7b6629910ca05238c7b00feecebfcdaa2e08100 (patch)
tree7e09ae380f09209fdebcf2ee8170c971a410c319 /editors/xemacs-packages
parentd89811630da39a1ab176e8c3702e470a696bd8d4 (diff)
downloadpkgsrc-a7b6629910ca05238c7b00feecebfcdaa2e08100.tar.gz
".for variable names should not contain uppercase letters"
Diffstat (limited to 'editors/xemacs-packages')
-rw-r--r--editors/xemacs-packages/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/editors/xemacs-packages/Makefile b/editors/xemacs-packages/Makefile
index 18d6374e1d1..790c3c7e750 100644
--- a/editors/xemacs-packages/Makefile
+++ b/editors/xemacs-packages/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.58 2012/10/03 21:56:00 wiz Exp $
+# $NetBSD: Makefile,v 1.59 2013/04/06 13:24:19 rodent Exp $
DISTNAME= xemacs-packages
PKGNAME= xemacs-packages-1.16
@@ -212,10 +212,10 @@ xemacs-update-package: xemacs-fetch-package-list xemacs-merge-package-list
do-install:
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/lib/xemacs/xemacs-packages
-.for DISTFILE in ${DISTFILES}
- @${ECHO_MSG} -n "Extracting ${DISTFILE} ... "
+.for distfile in ${DISTFILES}
+ @${ECHO_MSG} -n "Extracting ${distfile} ... "
${GTAR} xCzf ${DESTDIR}${PREFIX}/lib/xemacs/xemacs-packages \
- ${DISTDIR}/${DIST_SUBDIR}/${DISTFILE}
+ ${DISTDIR}/${DIST_SUBDIR}/${distfile}
@${ECHO_MSG} "done"
.endfor
@${ECHO_MSG} -n "Fixing file ownerships ... "
@@ -225,11 +225,11 @@ do-install:
@${ECHO_MSG} -n "Fixing file permissions ... "
${CHMOD} -R g-w,o-w ${DESTDIR}${PREFIX}/lib/xemacs/xemacs-packages
@${ECHO_MSG} "done"
-.for PROG in ${REPLACEMENT_PROGS}
- @${ECHO_MSG} "Fixing ${PROG} paths"
- for f in ${REPLACEMENTS.${PROG}}; do \
+.for prog in ${REPLACEMENT_PROGS}
+ @${ECHO_MSG} "Fixing ${prog} paths"
+ for f in ${REPLACEMENTS.${prog}}; do \
cp ${DESTDIR}$$f ${DESTDIR}$$f.pre; \
- ${SED} -e 's|#!.*${PROG}|${PREFIX}/bin/${PROG}|' \
+ ${SED} -e 's|#!.*${prog}|${PREFIX}/bin/${prog}|' \
${DESTDIR}$$f.pre > ${DESTDIR}$$f; \
rm ${DESTDIR}$$f.pre; \
done