summaryrefslogtreecommitdiff
path: root/print/ja-ptex-share/Makefile
diff options
context:
space:
mode:
authorkei <kei@pkgsrc.org>2003-03-15 20:02:49 +0000
committerkei <kei@pkgsrc.org>2003-03-15 20:02:49 +0000
commit068db10b718998e2666d1d462b5c102e2d2d6389 (patch)
tree7a33cc2b18c1e17ca315a63441b0e5953733c573 /print/ja-ptex-share/Makefile
parent0d1979f120d22d97940f731a5645598cc62d2d28 (diff)
downloadpkgsrc-068db10b718998e2666d1d462b5c102e2d2d6389.tar.gz
initial import of ja-ptex-share-2.1.
pTeX/pLaTeX (Publishing TeX/LaTeX) are Japanese-support versions of TeX/LaTeX in respectively and have the following new/improved features as well as the one TeX has: o it can layout text lines in vertically as well as horizontally, it can even be mixed in the same page. o it supports Japanese line-layout rules (kinsoku). o it generates high quality page by adjusting the spacing between Japanese-Japanese characters, or Japanese-Latin characters. o it layout lines of the Japanese characters by JFM. pTeX is developed by ASCII Corp. and now distributed under the BSD style license. This package contains architecture independent part.
Diffstat (limited to 'print/ja-ptex-share/Makefile')
-rw-r--r--print/ja-ptex-share/Makefile54
1 files changed, 54 insertions, 0 deletions
diff --git a/print/ja-ptex-share/Makefile b/print/ja-ptex-share/Makefile
new file mode 100644
index 00000000000..551e7d7afca
--- /dev/null
+++ b/print/ja-ptex-share/Makefile
@@ -0,0 +1,54 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/03/15 20:02:49 kei Exp $
+
+DISTNAME= ptex-texmf-2.1
+PKGNAME= ja-ptex-share-2.1
+CATEGORIES= print japanese
+MASTER_SITES= ftp://ftp.ascii.co.jp/pub/TeX/ascii-ptex/tetex/ \
+ ftp://ftp.ascii.co.jp/pub/TeX/ascii-ptex/jvf/ \
+ http://www.ring.gr.jp/pub/text/TeX/ascii-ptex/tetex/ \
+ http://www.ring.gr.jp/pub/text/TeX/ascii-ptex/jvf/
+DISTFILES= ptex-texmf-2.1${EXTRACT_SUFX} \
+ jis${EXTRACT_SUFX} \
+ nmin-ngoth${EXTRACT_SUFX} \
+ standard${EXTRACT_SUFX} \
+ morisawa${EXTRACT_SUFX}
+
+MAINTAINER= kei@netbsd.org
+HOMEPAGE= http://www.ascii.co.jp/pb/ptex/
+COMMENT= library files for pTeX
+
+DEPENDS+= teTeX2>=2.0.1:../../print/teTeX2
+
+DIST_SUBDIR= teTeX
+WRKSRC= ${WRKDIR}
+NO_CONFIGURE= YES
+NO_BUILD= YES
+TEXMFLOCAL= ${PREFIX}/share/texmf.local
+
+do-install:
+ ${INSTALL_DATA_DIR} ${TEXMFLOCAL}
+.if defined(EXTRACT_USING_PAX)
+ cd ${TEXMFLOCAL}; \
+ ${DECOMPRESS_CMD} \
+ ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} | ${PAX} -r
+ cd ${TEXMFLOCAL}/fonts; \
+ for f in jis nmin-ngoth standard morisawa; do \
+ ${DECOMPRESS_CMD} \
+ ${DISTDIR}/${DIST_SUBDIR}/$$f${EXTRACT_SUFX} | ${PAX} -r; \
+ ${MV} ${TEXMFLOCAL}/fonts/$$f/tfm ${TEXMFLOCAL}/fonts/tfm/$$f;\
+ ${MV} ${TEXMFLOCAL}/fonts/$$f/vf ${TEXMFLOCAL}/fonts/vf/$$f;\
+ done
+.else
+ cd ${TEXMFLOCAL}; \
+ ${DECOMPRESS_CMD} \
+ ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} | ${GTAR} -xpf -
+ cd ${TEXMFLOCAL}/fonts; \
+ for f in jis nmin-ngoth standard morisawa; do \
+ ${DECOMPRESS_CMD} \
+ ${DISTDIR}/${DIST_SUBDIR}/$$f${EXTRACT_SUFX} | ${GTAR} -xpf -;\
+ ${MV} ${TEXMFLOCAL}/fonts/$$f/tfm ${TEXMFLOCAL}/fonts/tfm/$$f;\
+ ${MV} ${TEXMFLOCAL}/fonts/$$f/vf ${TEXMFLOCAL}/fonts/vf/$$f;\
+ done
+.endif
+
+.include "../../mk/bsd.pkg.mk"