freebsd-ports/japanese/font-mplus-ipa/pkg-install
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

21 lines
592 B
Bash

#!/bin/sh
# $FreeBSD$
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 '/-ipa-/d' fonts.dir > fonts.dir.tmp
numfonts=$(echo $(cat fonts.dir.tmp fonts.dir.ipa | wc -l) - 2 | bc)
echo ${numfonts} > fonts.dir
sed -e 1d fonts.dir.tmp >> fonts.dir
sed -e 1d fonts.dir.ipa >> fonts.dir
touch fonts.alias
sed -e '/^-ipa-/d' fonts.alias > fonts.alias.tmp
mv -f fonts.alias.tmp fonts.alias
cat fonts.alias.ipa >> fonts.alias
rm -f fonts.dir.tmp fonts.alias.tmp