freebsd-ports/japanese/font-kochi/pkg-install
Shigeyuki Fukushima e388867149 Update to 20020108.
Install kochi-ttfonts documents.

Submitted by:	KANOU Hiroki <kanou@mil.allnet.ne.jp>
2002-01-15 18:35:30 +00:00

18 lines
608 B
Bash

#!/bin/sh
FONTDIR=${PKG_PREFIX}/lib/X11/fonts/TrueType
if [ "$2" = "PRE-INSTALL" ]; then
echo "Please add ${FONTDIR} to your /etc/XF86Config file"
exit 0
fi
cd ${FONTDIR}
touch fonts.dir
sed -e '/-kochi-/d' fonts.dir > fonts.dir.tmp
numfonts=$(echo $(cat fonts.dir.tmp fonts.dir.kochi | wc -l) - 2 | bc)
echo ${numfonts} > fonts.dir
sed -e 1d fonts.dir.tmp >> fonts.dir
sed -e 1d fonts.dir.kochi >> fonts.dir
touch fonts.alias
sed -e '/^-kochi-/d' -e '/^-aliastt-/d' fonts.alias > fonts.alias.tmp
mv -f fonts.alias.tmp fonts.alias
cat fonts.alias.kochi >> fonts.alias
rm -f fonts.dir.tmp fonts.alias.tmp