freebsd-ports/japanese/monafonts-ttf/pkg-install
MANTANI Nobutaka 26969760b7 Support staging.
Update message in pkg-install.
2014-06-22 13:17:11 +00:00

19 lines
658 B
Bash

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