diff options
author | mita <mita@FreeBSD.org> | 2002-05-03 09:34:04 +0000 |
---|---|---|
committer | mita <mita@FreeBSD.org> | 2002-05-03 09:34:04 +0000 |
commit | 982d4012c1b5ba1dfea622eddf228acc5d0118c6 (patch) | |
tree | d8a55224982bbda8333c49aa12f29db03624ee26 /print/adobe-cmaps/Makefile | |
parent | 74175dcb9cbcf6933827a6dde73b311483a116db (diff) | |
download | FreeBSD-ports-982d4012c1b5ba1dfea622eddf228acc5d0118c6.zip FreeBSD-ports-982d4012c1b5ba1dfea622eddf228acc5d0118c6.tar.gz |
The new port print/adobe-cmaps
This port installs Adobe CMaps that will be commonly used by I18n-ed
ghostscripts and xpdfs.
In ports-jp@jp.FreeBSD.org ML, we have discussed for a month a smart
implementation of I18n ghostscript. This port is a part of the solution.
Submitted by: KATO Tsuguru [ports-jp 12650]
Diffstat (limited to 'print/adobe-cmaps/Makefile')
-rw-r--r-- | print/adobe-cmaps/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/print/adobe-cmaps/Makefile b/print/adobe-cmaps/Makefile new file mode 100644 index 0000000..c619d98 --- /dev/null +++ b/print/adobe-cmaps/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: adobe-cmaps +# Date created: Wed, 10 Apr 2002 02:22:30 +0900 +# Whom: KATO Tsuguru <dai_fugo@geocities.co.jp> +# +# $FreeBSD$ +# + +PORTNAME= adobe-cmaps +PORTVERSION= 200109 +CATEGORIES= print +MASTER_SITES= ftp://ftp.gyve.org/pub/gs-cjk/ \ + http://www.matsusaka-u.ac.jp/mirror/gs-cjk/ +DIST_SUBDIR= ghostscript + +MAINTAINER= mita@jp.FreeBSD.org + +NO_WRKSUBDIR= yes +NO_BUILD= yes +RESOURCE= ${PREFIX}/share/ghostscript/Resource + +do-install: + @${MKDIR} ${RESOURCE}/CIDFont + @${MKDIR} ${RESOURCE}/Font +.for i in CMap ac14 ag14 ai0 aj14 aj20 ak12 pdfcorefont rksj-cmaps + ${TAR} -C ${WRKSRC} -cf - ${i} | ${TAR} -C ${RESOURCE} -xf - +.endfor + +.include <bsd.port.mk> |