mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
95713724b9
Aporo W1'(Mincho) and 'MOTOYA Ceder W1'(Gothic).
19 lines
594 B
Bash
19 lines
594 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 '/-motoya-/d' fonts.dir > fonts.dir.tmp
|
|
numfonts=$(echo $(cat fonts.dir.tmp fonts.dir.motoya | wc -l) - 2 | bc)
|
|
echo ${numfonts} > fonts.dir
|
|
sed -e 1d fonts.dir.tmp >> fonts.dir
|
|
sed -e 1d fonts.dir.motoya >> fonts.dir
|
|
touch fonts.alias
|
|
sed -e '/^-motoya-/d' fonts.alias > fonts.alias.tmp
|
|
mv -f fonts.alias.tmp fonts.alias
|
|
cat fonts.alias.motoya >> fonts.alias
|
|
rm -f fonts.dir.tmp fonts.alias.tmp
|