freebsd-ports/x11-fonts/bitmap-fonts/pkg-req
Shigeyuki Fukushima fe1f7ae281 Add INSTALL and DEINSTALL scripts.
Fix mkfontdir problem (Port's 'make install' doesn't execute mkfontdir).
Auto-execute 'xset fp rehash' in INSTALL/DEINSTALL script.
Submitted by:	TAOKA Satoshi <taoka@infonets.hiroshima-u.ac.jp>
1999-08-19 12:28:51 +00:00

23 lines
636 B
Bash

#!/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
exit 0;