summaryrefslogblamecommitdiff
path: root/japanese/elisa10x8/pkg-req
blob: 7d965af812ddec28f3d299f248e75931f627f96f (plain) (tree)












































                                                                                     
#!/bin/sh
if [ "x$1" = "x" ]; then
	exit 1;
fi
if [ "x$2" != "xINSTALL" -a "x$2" != "xDEINSTALL" ]; then
	exit 1;
fi

export FONTDIR; FONTDIR=${PKG_PREFIX}/lib/X11/fonts/local

if [ "$2x" = "INSTALLx" -a ! -d ${FONTDIR} ]; then
	echo '**********************************************************************'
	echo "****** ${FONTDIR}/ doesn't exist."
	echo "****** Creating ${FONTDIR}/"
	echo '****** Please upgrade your XFree86 to 3.3.3 or upper,'
	echo "****** or add this directory to your /etc/XF86Config's FontPath entry."
	echo '**********************************************************************'
	mkdir ${FONTDIR}
fi

# font alias entry here!
TMPFILE=/tmp/install-fonts-alias-$$
cat << EOF > ${TMPFILE}
elisa -elisa-fixed-medium-r-normal--10-70-75-75-c-100-jisx0208.1983-0
s5x8  -schumacher-descent2clean-medium-r-normal--8-80-75-75-c-50-iso646.1991-irv
EOF

echo "Updating ${FONTDIR}/fonts.alias"
cd ${FONTDIR}
touch fonts.alias ${TMPFILE}
cp fonts.alias fonts.alias.orig
if [ "$2" = "INSTALL" ] ; then
	(grep -v -e "`cat ${TMPFILE}`" fonts.alias.orig; \
	 cat ${TMPFILE}) > fonts.alias
elif [ "$2" = "DEINSTALL" ] ; then
	grep -v -e "`cat ${TMPFILE}`" fonts.alias.orig > fonts.alias
fi
rm -f fonts.alias.orig ${TMPFILE}

echo "**********************************************************"
echo "You should restart X server or do 'xset fp rehash' command"
echo "to enable this update."
echo "**********************************************************"

exit 0;