freebsd-ports/print/latex-auto-greek/pkg-install
Pav Lucistnik cc303b203f This is a LaTeX port that allows one to write greek documents with both latin
and greek text, without having to use \textlatin or any other command to switch
between the greek/latintext modes.

It includes greek postscript fonts created by Angelos Haritsis.

PR:		ports/78830
Submitted by:	eelvex <mplekos@physics.upatras.gr>
2005-11-01 22:10:09 +00:00

11 lines
344 B
Bash

#!/bin/sh
prefix=/usr/local
if [ "$2" = "POST-INSTALL" ]; then
${prefix}/bin/mktexlsr
echo "Installation done."
echo "Refresh the map files and default hyphenations by running:"
echo "updmap-sys and fmtutil-sys"
echo "--> ${prefix}/bin/updmap-sys; ${prefix}/bin/fmtutil-sys --byfmt latex; ${prefix}/bin/fmtutil-sys --byfmt pdflatex"
fi;