diff options
author | rodent <rodent@pkgsrc.org> | 2013-04-06 13:24:18 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2013-04-06 13:24:18 +0000 |
commit | f565a1af87ccaccae3cfc89af55ee17f3d8ff47b (patch) | |
tree | 7e09ae380f09209fdebcf2ee8170c971a410c319 /security | |
parent | 45ba4e37fd8e682cf12febc192ee0302681bfa77 (diff) | |
download | pkgsrc-f565a1af87ccaccae3cfc89af55ee17f3d8ff47b.tar.gz |
".for variable names should not contain uppercase letters"
Diffstat (limited to 'security')
-rw-r--r-- | security/PAM/Makefile | 6 | ||||
-rw-r--r-- | security/fragroute/Makefile | 6 | ||||
-rw-r--r-- | security/gpg2dot/Makefile | 14 |
3 files changed, 13 insertions, 13 deletions
diff --git a/security/PAM/Makefile b/security/PAM/Makefile index 0e980ed41a5..0a9bdb4ebfd 100644 --- a/security/PAM/Makefile +++ b/security/PAM/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2012/10/23 18:16:20 asau Exp $ +# $NetBSD: Makefile,v 1.49 2013/04/06 13:24:19 rodent Exp $ DISTNAME= Linux-PAM-0.77 PKGNAME= ${DISTNAME:S/Linux-//} @@ -80,8 +80,8 @@ PLIST.limits= yes .endif CONF_FILES= ${EGDIR}/pam.conf ${PKG_SYSCONFBASEDIR}/pam.conf -.for FILE in ${CFILES} -CONF_FILES+= ${EGDIR}/${FILE} ${PKG_SYSCONFDIR}/${FILE} +.for file in ${CFILES} +CONF_FILES+= ${EGDIR}/${file} ${PKG_SYSCONFDIR}/${file} .endfor SPECIAL_PERMS= ${PREFIX}/sbin/unix_chkpwd ${SETUID_ROOT_PERMS} diff --git a/security/fragroute/Makefile b/security/fragroute/Makefile index 51ed5798357..b5eebf42714 100644 --- a/security/fragroute/Makefile +++ b/security/fragroute/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 2013/02/06 23:23:36 jperkin Exp $ +# $NetBSD: Makefile,v 1.24 2013/04/06 13:24:20 rodent Exp $ DISTNAME= fragroute-1.2 PKGREVISION= 14 @@ -21,8 +21,8 @@ SCRIPTS= README.snort base-1 frag-1 frag-2 frag-3 frag-4 frag-5 \ INSTALLATION_DIRS+= share/fragroute pre-install: -.for FILE in ${SCRIPTS} - ${INSTALL_DATA} ${WRKSRC}/scripts/${FILE} ${DESTDIR}${PREFIX}/share/fragroute +.for file in ${SCRIPTS} + ${INSTALL_DATA} ${WRKSRC}/scripts/${file} ${DESTDIR}${PREFIX}/share/fragroute .endfor .include "../../net/libpcap/buildlink3.mk" diff --git a/security/gpg2dot/Makefile b/security/gpg2dot/Makefile index 4165c463803..3d5cb501cf1 100644 --- a/security/gpg2dot/Makefile +++ b/security/gpg2dot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2012/10/23 18:16:29 asau Exp $ +# $NetBSD: Makefile,v 1.16 2013/04/06 13:24:20 rodent Exp $ # DISTNAME= gpg2dot-1.5 @@ -26,16 +26,16 @@ do-extract: # ${CP} ${FILESDIR}/gpg2dot.1 ${WRKSRC}/gpg2dot.1.in do-build: -.for FILE in gpg2dot +.for file in gpg2dot ${SED} -e 's|@PREFIX@|${PREFIX}|g' \ -e 's|@DISTVER@|${DISTVER}|g' \ - < ${WRKSRC}/${FILE}.pl \ - > ${WRKSRC}/${FILE} + < ${WRKSRC}/${file}.pl \ + > ${WRKSRC}/${file} .endfor -#.for FILE in gpg2dot +#.for file in gpg2dot # ${SED} -e '' \ -# < ${WRKSRC}/${FILE}.1.in \ -# > ${WRKSRC}/${FILE}.1 +# < ${WRKSRC}/${file}.1.in \ +# > ${WRKSRC}/${file}.1 #.endfor do-install: |