summaryrefslogtreecommitdiff
path: root/fonts/jisx0212fonts
diff options
context:
space:
mode:
authorrillig <rillig>2006-09-06 09:50:25 +0000
committerrillig <rillig>2006-09-06 09:50:25 +0000
commitb0652bd8940055606a6742e5f108546011c77f60 (patch)
tree76b4483f0d5ed9fce301ab618a18006becfc91d9 /fonts/jisx0212fonts
parentd5006a34cf83a00266aeca3b104a10a229760f36 (diff)
downloadpkgsrc-b0652bd8940055606a6742e5f108546011c77f60.tar.gz
Fixed some pkglint warnings.
Diffstat (limited to 'fonts/jisx0212fonts')
-rw-r--r--fonts/jisx0212fonts/Makefile16
1 files changed, 9 insertions, 7 deletions
diff --git a/fonts/jisx0212fonts/Makefile b/fonts/jisx0212fonts/Makefile
index 2faef291057..2fec7c03ff9 100644
--- a/fonts/jisx0212fonts/Makefile
+++ b/fonts/jisx0212fonts/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.14 2006/02/05 23:09:10 joerg Exp $
+# $NetBSD: Makefile,v 1.15 2006/09/06 09:50:25 rillig Exp $
DISTNAME= jisx0212fonts-0.0
PKGREVISION= 2
@@ -25,20 +25,22 @@ USE_TOOLS+= gzip gunzip
# XXX Can we assume that ${GUNZIP_CMD} can extract .Z files?
do-extract:
- @for f in ${DISTFILES}; do \
- ${GUNZIP_CMD} -c ${DISTDIR}/$${f} >${WRKSRC}/$${f%.*}; \
+ for f in ${DISTFILES}; do \
+ gunzip -c ${DISTDIR}/$${f} >${WRKSRC}/$${f%.*}; \
done
do-build:
- @cd ${WRKSRC}; \
+ set -e; \
+ cd ${WRKSRC}; \
for f in ${FONTS}; do \
${X11BASE}/bin/bdftopcf $${f}.bdf | \
- ${GZIP_CMD} -c >$${f}.pcf.gz; \
+ gzip -c >$${f}.pcf.gz; \
done
do-install:
- @${INSTALL_DATA_DIR} ${FONTDIR}
- @for f in ${FONTS}; do \
+ ${INSTALL_DATA_DIR} ${FONTDIR}
+ set -e; \
+ for f in ${FONTS}; do \
${INSTALL_DATA} ${WRKSRC}/$${f}.pcf.gz ${FONTDIR}; \
done