ac031d61e3
of japanese/ptex has been removed and japanese/ptex-tetex has been renamed with japanese/ptex. These are almost the same with each other (actually ptex-tetex had some upper compatibility with ptex), so there should be no functionality regression. Also, dependencies of the relevant ports have been updated and PORTREVISON bumped.
17 lines
629 B
Bash
17 lines
629 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
WEB2C="\$TEXMF/web2c{/ptex,}"; export WEB2C
|
|
TEXPSHEADERS="\$TEXMF/{dvips{/ptex,},fonts/{enc,type1,type3}}//"; export TEXPSHEADERS
|
|
TEXCONFIG="\$TEXMF/dvips{/ptex,}//"; export TEXCONFIG
|
|
TEXFONTMAPS="\$TEXMF/fonts/map{/ptex,}//"; export TEXFONTMAPS
|
|
TEXCONFIGINPUTS="\$TEXMF/texconfig{/ptex,}"; export TEXCONFIGINPUTS
|
|
|
|
FONTSMAPVARDIR=%%PREFIX%%/%%FONTSMAPVARDIR%%
|
|
: ${UPDMAP_DIST:=%%PREFIX%%/%%UPDMAPDIR%%/updmap.dist}
|
|
|
|
/bin/sh ${UPDMAP_DIST} \
|
|
--dvipsoutputdir ${FONTSMAPVARDIR}/dvips/updmap \
|
|
--dvipdfmoutputdir ${FONTSMAPVARDIR}/dvipdfm/updmap \
|
|
--pdftexoutputdir ${FONTSMAPVARDIR}/pdftex/updmap \
|
|
"$@"
|