2000-10-03 17:43:11 +02:00
|
|
|
#!/bin/sh
|
2006-02-20 21:32:58 +01:00
|
|
|
# $FreeBSD$
|
2000-10-03 17:43:11 +02:00
|
|
|
|
2006-02-20 21:32:58 +01:00
|
|
|
GSVER=`gs --version`
|
|
|
|
GSDIR=%%PREFIX%%/share/ghostscript
|
2000-10-03 17:43:11 +02:00
|
|
|
FONTMAP=${GSDIR}/${GSVER}/lib/Fontmap.GS
|
|
|
|
FONTMAPTMP=${FONTMAP}.tmp
|
|
|
|
|
|
|
|
# Run just once.
|
|
|
|
if [ "x$2" != "xDEINSTALL" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2006-02-27 13:06:30 +01:00
|
|
|
cp ${FONTMAP} ${FONTMAPTMP}
|
2000-10-03 17:43:11 +02:00
|
|
|
sed -e "/^\/MOE.*/d" ${FONTMAP} > ${FONTMAPTMP}
|
|
|
|
mv -f ${FONTMAPTMP} ${FONTMAP}
|