mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
1b4ebbb32d
zh-arphicttf's pattern. Some fonts have problems with X-TT/X-freetype, possibly due to bogus entries, including wcl-02.ttf, wcl-03.ttf, wcl-05.ttf, wcl-06.ttf, and wcl-07.ttf. The rest are displayed correctly. Further testings showed that all these fonts can't be used in GS6. It seems that the patched GS6 is confused identifying Big5 and GB TTFs, so for now only the newer Unicode-encoded TTFs can be used.
27 lines
544 B
Bash
27 lines
544 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" != "DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
PKGNAME=$1
|
|
PREFIX=${PKG_PREFIX}
|
|
TTFM=${PKG_PREFIX}/bin/ttfm.sh
|
|
|
|
# No default kai & ming for wangttf.
|
|
FONTDIR=${PREFIX}/share/fonts/TrueType
|
|
FONTS="wcl-01.ttf wcl-02.ttf wcl-03.ttf wcl-04.ttf wcl-05.ttf \
|
|
wcl-06.ttf wcl-07.ttf wcl-08.ttf wcl-09.ttf wcl-10.ttf"
|
|
|
|
if [ -r $FONTDIR/$PKGNAME ]; then
|
|
for i in `cat $FONTDIR/$PKGNAME`; do
|
|
for f in $FONTS $DEFAULTMING $DEFAULTKAI; do
|
|
$TTFM --remove $i $f
|
|
done
|
|
done
|
|
fi
|
|
|
|
rm -f $FONTDIR/$PKGNAME
|
|
|
|
exit 0
|