diff options
author | obache <obache> | 2013-06-05 13:47:51 +0000 |
---|---|---|
committer | obache <obache> | 2013-06-05 13:47:51 +0000 |
commit | 7d5fe337aaf4e55669b4c0e51629fe49c1ce3aaf (patch) | |
tree | f128c2f81107cdae1ccdea596ab022d7005c38a2 /fonts/jisx0212fonts | |
parent | 5eff494b458fd08e8335f34d37e2b72263fa9080 (diff) | |
download | pkgsrc-7d5fe337aaf4e55669b4c0e51629fe49c1ce3aaf.tar.gz |
using bdftopcf, so add to TOOLS and let to use TOOLS's one instead of X11BASE/bin.
Diffstat (limited to 'fonts/jisx0212fonts')
-rw-r--r-- | fonts/jisx0212fonts/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fonts/jisx0212fonts/Makefile b/fonts/jisx0212fonts/Makefile index c494c108f86..1ef567501db 100644 --- a/fonts/jisx0212fonts/Makefile +++ b/fonts/jisx0212fonts/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2012/10/03 18:28:25 asau Exp $ +# $NetBSD: Makefile,v 1.20 2013/06/05 13:47:51 obache Exp $ DISTNAME= jisx0212fonts-0.0 PKGREVISION= 2 @@ -20,7 +20,7 @@ FONTS= ${DISTFILES:C/\.bdf.*$//} FONTDIR= ${PREFIX}/lib/X11/fonts/local FONTS_DIRS.x11= ${FONTDIR} -USE_TOOLS+= gzip gunzip +USE_TOOLS+= gzip gunzip bdftopcf # XXX Can we assume that ${GUNZIP_CMD} can extract .Z files? do-extract: @@ -32,7 +32,7 @@ do-build: set -e; \ cd ${WRKSRC}; \ for f in ${FONTS}; do \ - ${X11BASE}/bin/bdftopcf $${f}.bdf | \ + bdftopcf $${f}.bdf | \ gzip -c >$${f}.pcf.gz; \ done |