diff options
author | tron <tron> | 2002-07-07 14:14:14 +0000 |
---|---|---|
committer | tron <tron> | 2002-07-07 14:14:14 +0000 |
commit | 6ba8c6bff2bef7a1f391dc5c22c87f0944f380f2 (patch) | |
tree | ad1dfeedfe779b8c7f10c09b06d382e87da7ad53 /mail | |
parent | ac3f28a2dd784e4495290abb3f9abfe312e6ed7c (diff) | |
download | pkgsrc-6ba8c6bff2bef7a1f391dc5c22c87f0944f380f2.tar.gz |
Use "FILE" instead of "file" as shell variable to fix a "pkglint" warning.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/faces/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/mail/faces/Makefile b/mail/faces/Makefile index 045b2c910d4..eac32cd9c68 100644 --- a/mail/faces/Makefile +++ b/mail/faces/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2001/11/30 16:29:28 jlam Exp $ +# $NetBSD: Makefile,v 1.25 2002/07/07 14:14:14 tron Exp $ DISTNAME= faces-1.6.1 PKGREVISION= 1 @@ -10,6 +10,8 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= packages@netbsd.org COMMENT= visual mail, user and print face server +DEPENDS+= netpbm>=9.25:../../graphics/netpbm + LICENSE= limited-redistribution RESTRICTED= "Distribution not allowed if money exchanged" @@ -38,13 +40,13 @@ do-configure: scripts/facesall \ scripts/mkfacesindex \ "; \ - for file in $${files}; do \ + for FILE in $${files}; do \ ${SED} -e "s|@PREFIX@|${PREFIX}|g" \ - $${file} > $${file}.fixed; \ - if [ -x $${file} ]; then \ - ${CHMOD} +x $${file}.fixed; \ + $${FILE} > $${FILE}.fixed; \ + if [ -x $${FILE} ]; then \ + ${CHMOD} +x $${FILE}.fixed; \ fi; \ - ${MV} -f $${file}.fixed $${file}; \ + ${MV} -f $${FILE}.fixed $${FILE}; \ done .include "../../mk/x11.buildlink.mk" |