16 lines
329 B
Bash
16 lines
329 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
GSVER=`gs --version`
|
|
GSDIR=%%PREFIX%%/share/ghostscript
|
|
FONTMAP=${GSDIR}/${GSVER}/Resource/Init/Fontmap.GS
|
|
FONTMAPTMP=${FONTMAP}.tmp
|
|
|
|
# Run just once.
|
|
if [ "x$2" != "xDEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
cp ${FONTMAP} ${FONTMAPTMP}
|
|
sed -e "/^\/MOE.*/d" ${FONTMAP} > ${FONTMAPTMP}
|
|
mv -f ${FONTMAPTMP} ${FONTMAP}
|