pkgsrc/print/tex-tetex/files/map-deinstall.tmpl
minskim 5a0c20437b Sync tex-tetex{,-doc} with TeX Live r25424.
This version supports Japanese font maps for pTeX and pLaTeX.
2012-03-04 01:01:43 +00:00

32 lines
812 B
Cheetah

# $NetBSD: map-deinstall.tmpl,v 1.2 2012/03/04 01:01:43 minskim Exp $
#
# Disable font maps and remove entries from updmap.cfg.
#
UPDMAP_CFG=${PKG_SYSCONFBASE}/texmf/web2c/updmap.cfg
case ${STAGE} in
DEINSTALL)
map_files="@MAP_FILES@"
for map in $map_files ; do
${GREP} -v "^Map ${map}" ${UPDMAP_CFG} > \
${UPDMAP_CFG}.tmp &&
${MV} ${UPDMAP_CFG}.tmp ${UPDMAP_CFG}
done
mixedmap_files="@MIXEDMAP_FILES@"
for map in $mixedmap_files ; do
${GREP} -v "^MixedMap ${map}" ${UPDMAP_CFG} > \
${UPDMAP_CFG}.tmp &&
${MV} ${UPDMAP_CFG}.tmp ${UPDMAP_CFG}
done
kanjimap_files="@KANJIMAP_FILES@"
for map in $kanjimap_files ; do
${GREP} -v "^KanjiMap ${map}" ${UPDMAP_CFG} > \
${UPDMAP_CFG}.tmp &&
${MV} ${UPDMAP_CFG}.tmp ${UPDMAP_CFG}
done
@UPDMAP_SYS@
;;
*)
;;
esac