#!/bin/sh # $FreeBSD$ GSVER=`gs --version` GSDIR=%%PREFIX%%/share/ghostscript FONTMAP=${GSDIR}/${GSVER}/lib/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}