pkgsrc/print/teTeX/files/texmf.tmpl
dmcmahill f1629474f3 Avoid empty for loops in shell scripts .
for f in ; do .... ; done

fails with solaris /bin/sh.  This repairs installation for several
packages.
2006-10-10 12:41:28 +00:00

25 lines
431 B
Cheetah

# $NetBSD: texmf.tmpl,v 1.5 2006/10/10 12:41:28 dmcmahill Exp $
#
# Rebuild the ls-R database.
#
case ${STAGE} in
POST-INSTALL)
@MKTEXLSR@ @TEXMFDIRS@
tex_fontmaps="@TEX_FONTMAPS@"
for map in $tex_fontmaps ; do
@UPDMAP_SYS@ --enable Map=${map}
done
;;
DEINSTALL)
tex_fontmaps="@TEX_FONTMAPS@"
for map in $tex_fontmaps ; do
@UPDMAP_SYS@ --disable ${map}
done
;;
POST-DEINSTALL)
@MKTEXLSR@ @TEXMFDIRS@
;;
*)
;;
esac