1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/japanese/font-mplus-ipa/pkg-deinstall
Maho Nakata e64a53c000 Add High quality Japanese font named IPA fonts,
(Infomation-technology Promotion Agency)
freely available but re-distribution is restricted.
2004-08-14 05:57:02 +00:00

16 lines
395 B
Bash

#!/bin/sh
# $FreeBSD$
if [ "$2" != "DEINSTALL" ]; then
exit 0
fi
FONTDIR=${PKG_PREFIX}/lib/X11/fonts/TrueType
cd ${FONTDIR}
sed -e '/-ipa-/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 '/^-ipa-/d' fonts.alias > fonts.alias.tmp
mv -f fonts.alias.tmp fonts.alias
rm -f fonts.dir.tmp