freebsd-ports/chinese/moefonts-cid/files/pkg-deinstall.in

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}