1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/japanese/font-sazanami/pkg-deinstall
2004-06-19 14:09:28 +00:00

16 lines
405 B
Bash

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