mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
65a31a1b33
- Respect LOCALBASE (ccmap/make.sh, pkg-install, pkg-deinstall) - Respect NOPORTEXAMPLES - Use COPYTREE_* where applicable
29 lines
649 B
Bash
29 lines
649 B
Bash
#!/bin/sh
|
|
|
|
LOCALBASE="${LOCALBASE}"
|
|
|
|
PATH=/bin:/usr/bin:${LOCALBASE}/bin; export PATH
|
|
|
|
if [ "x$2" = "xDEINSTALL" ]; then
|
|
TEXMFMAIN=`kpsexpand '$TEXMFMAIN'`
|
|
TEXMFCNF=${TEXMFMAIN}/web2c/texmf.cnf
|
|
|
|
CJKTTFDIR=${TEXMFMAIN}/fonts/truetype/CJK
|
|
CJKTFMDIR=${TEXMFMAIN}/fonts/tfm/CJK
|
|
|
|
# Delete symbolic links of TrueType font files
|
|
cd ${CJKTTFDIR} && rm -f arb5kai.ttf arb5sung.ttf argbkai.ttf argbsung.ttf
|
|
|
|
find ${CJKTFMDIR} -type l -and -name \*.tfm| xargs -n 10 rm -f
|
|
|
|
exit 0
|
|
fi
|
|
|
|
if [ "x$2" = "xPOST-DEINSTALL" ]; then
|
|
mktexlsr
|
|
updmap-sys --disable CJK-type1.map
|
|
# Contents in pdftex.map from CJK-pdftex.map are eliminated by updmap
|
|
|
|
exit 0
|
|
fi
|