freebsd-ports/textproc/ppower4/pkg-install
Greg Lewis 36791ca4fa . More complete search path for mktexlsr.
PR:		59482
Submitted by:	Stefan Walter <sw@gegenunendlich.de>
2003-11-20 15:36:07 +00:00

16 lines
507 B
Bash

#!/bin/sh
if [ "$2" = "POST-INSTALL" ]; then
echo "Updating content cache to let LaTeX know about the new style files:"
if [ -x ${LOCALBASE}/bin/mktexlsr ]; then
${LOCALBASE}/bin/mktexlsr
elif [ -x ${PKG_PREFIX}/bin/mktexlsr ]; then
${PKG_PREFIX}/bin/mktexlsr
elif [ -x /usr/local/bin/mktexlsr ]; then
/usr/local/bin/mktexlsr
else
echo "Could not find mktexlsr. Please run it manually to update"
echo "LaTeX's content cache, or you won't be able to use the"
echo "new style files."
fi
fi