1#!/bin/sh
2#
3# Post installation script (simply inform installer about PATH etc)
4#
5echo " "
6echo " "
7echo "Installation is complete.  Now, you should add the following"
8echo "(or equivalnet) commands to the appropriate initial user shell"
9echo "scripts (such as .profile, .login, etc) -- "
10echo " "
11echo " For korn or bourne shell:"
12echo "   PATH=\${PATH}:${BASEDIR}/${PKG}/bin"
13echo "   MANPATH=\${MANPATH}:${BASEDIR}/${PKG}/man"
14echo "   export PATH MANPATH"
15echo " "
16echo " For C shell:"
17echo "   set path=(\$path ${BASEDIR}/${PKG}/bin)"
18echo "   setenv MANPATH \$MANPATH:${BASEDIR}/${PKG}/man"
19echo " "
20echo " See the files under ${BASEDIR}/${PKG}/doc for more information."
21echo " "
22exit 0
23