#!/bin/sh
#
#
#

#
# On 2.3 and 2.4 the troff fonts added as part of the package instalation, but
# not as part of the registered package.
#
case `uname -r` in
	5.3|5.4)
		if [ -f ${BASEDIR}/usr/lib/font/devpost/charlib -a \
		     -f ${BASEDIR}/usr/lib/print/fonts.tar.Z ] ; then
			echo "Old system removing troff fonts..."
			rm -rf ${BASEDIR}/usr/lib/font/devpost \
				${BASEDIR}/usr/lib/font/makedev 
		fi
	;;
esac
