diff options
Diffstat (limited to 'print')
-rwxr-xr-x | print/teTeX/pkg/INSTALL | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/print/teTeX/pkg/INSTALL b/print/teTeX/pkg/INSTALL index ae0d47a43c8..35c398ede41 100755 --- a/print/teTeX/pkg/INSTALL +++ b/print/teTeX/pkg/INSTALL @@ -1,25 +1,26 @@ #! /bin/sh # -# $NetBSD: INSTALL,v 1.2 1998/08/07 11:11:33 agc Exp $ +# $NetBSD: INSTALL,v 1.3 1999/08/18 07:47:37 tron Exp $ # -if [ "$PREFIX" = "" ] -then - PREFIX=/usr/pkg -fi - -TEXMF=$PREFIX/share/texmf - - -cat <<EOT +case $2 in + PRE-INSTALL) + ;; + POST-INSTALL) + cat <<EOT --------------------------------------------------------------------------- -You may consider running $PREFIX/bin/texconfig to adjust for your +You may consider running ${PKG_PREFIX}/bin/texconfig to adjust for your local environment, e.g. configure font generation to use a temporary directory. -For further information have a look at $TEXMF/doc/tetex/. +For further information have a look at ${PKG_PREFIX}/share/texmf/doc/tetex/. --------------------------------------------------------------------------- - EOT + ;; + *) + echo "Unexpected Argument $2!!" + exit 1 + ;; +esac exit 0 |