0d1979f120
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 executables and few configuration files.
25 lines
466 B
Text
25 lines
466 B
Text
#!/bin/sh
|
|
#
|
|
# $NetBSD: INSTALL,v 1.1.1.1 2003/03/15 20:00:27 kei Exp $
|
|
|
|
TEXMF=@PREFIX@/share/texmf
|
|
TEXMFLOCAL=@PREFIX@/share/texmf.local
|
|
PSTRICKS=$TEXMF/dvips/pstricks
|
|
|
|
case $STAGE in
|
|
PRE-INSTALL)
|
|
;;
|
|
|
|
POST-INSTALL)
|
|
$MV $TEXMF/web2c/texmf.cnf $TEXMF/web2c/texmf.cnf.orig
|
|
$LN -s $TEXMFLOCAL/web2c/texmf.cnf $TEXMF/web2c/texmf.cnf
|
|
@PATCH@ -d $PSTRICKS < $PSTRICKS/PSTricks.patch
|
|
@PREFIX@/bin/mktexlsr
|
|
;;
|
|
|
|
*)
|
|
$ECHO "Unexpected argument: $STAGE"
|
|
exit 1
|
|
;;
|
|
|
|
esac
|