pkg-descr

Bitmap font, (6x12, 7x14, 8x16, 12x24) dots bitmap font.

Bitmap font is used on Mule with bitmap-mule or Emacs20 with bitmap-emacs20.

Bitmap font is installed the following directory tree:
${LOCALBASE}/lib/X11/fonts/local/

--- Porting by shige

pkg-plist

%%FONTSDIR%%/bitmap12.pcf.gz
%%FONTSDIR%%/bitmap14.pcf.gz
%%FONTSDIR%%/bitmap16.pcf.gz
%%FONTSDIR%%/bitmap20.pcf.gz
%%FONTSDIR%%/bitmap24.pcf.gz

pkg-req

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