freebsd-ports/chinese/moettf/pkg-deinstall
Yen-Ming Lee 1abb6bdb77 o fix MASTER_SITES
o add new file: moe_kai_pc.ttf
  http://www.edu.tw/mandr/bbs/1-4-2/kai.htm

PR:		50091
Submitted by:	Statue <statue@freebsd.sinica.edu.tw>
Approved by:	maintainer timeout
2003-04-14 17:58:54 +00:00

25 lines
474 B
Bash

#!/bin/sh
if [ "$2" != "DEINSTALL" ]; then
exit 0
fi
PKGNAME=$1
PREFIX=${PKG_PREFIX}
TTFM=${PKG_PREFIX}/bin/ttfm.sh
FONTDIR=${PREFIX}/share/fonts/TrueType
FONTS="moe_lishu.ttf moe_kai.ttf moe_sung.ttf moe_sungext.ttf moe_sungsym.ttf moe_kai_pc.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