freebsd-ports/japanese/truetypefonts/pkg-deinstall
Satoshi Asami 8381dfb9bd Move fonts from truetype to TrueType. Besides being a better match with the
"Type1" directory that already exists, I just realized that the Xtt ports
have been recommending this directory name in their documentation.
1998-11-19 18:39:26 +00:00

13 lines
429 B
Bash

#!/bin/sh
if [ "$2" != "DEINSTALL" ]; then
exit 0
fi
FONTDIR=${PKG_PREFIX}/lib/X11/fonts/TrueType
cd ${FONTDIR}
sed -e '/-watanabe-/d' -e '/-wadalab-/d' fonts.dir > fonts.dir.tmp
numfonts=$(echo $(cat fonts.dir.tmp | wc -l) - 1 | bc)
echo ${numfonts} > fonts.dir
sed -e 1d fonts.dir.tmp >> fonts.dir
sed -e '/^-watanabe-/d' -e '/^-wadalab-/d' fonts.alias > fonts.alias.tmp
mv -f fonts.alias.tmp fonts.alias
rm -f fonts.dir.tmp