SoftPC 3.0 fonts in pcf format.

You can put these fonts in a directory as they are. The NCD can
read the compresses files (12 bitcompression). This will save 
disk space.  You could also uncompress the files and copy the
file fonts.dir.uncompressed to fonts.dir.

To convert bdf fonts to pcf fonts, use the following script.

#!/bin/sh
#  'dofonts' script to convert wp bdf fonts to pcf fonts
#  suitable for use with NCD terminals.
#  You must have the programs 'ncdbdftopcf' and 'ncdmkfontdir' in  your
#  command path.   They are distributed with the NCD software. Other
#  versions of these programs may work as well. They are distributed
#  with the MIT X11 release.
set -x

for i in *.bdf
do
        ncdbdftopcf < $i > `echo $i | sed 's/bdf/pcf/'`
done
ncdmkfontdir

