summaryrefslogtreecommitdiff
path: root/print/teTeX-bin/pkg/INSTALL
blob: 30abba3114fd072a9696270f20837a3402b1eb30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#! /bin/sh
#
# $NetBSD: INSTALL,v 1.4 1999/08/18 07:43:29 tron Exp $
#

case $2 in
    PRE-INSTALL)
	if [ ! -d /var/spool/texfonts ]; then
	    install -d -m 755 -o root -g wheel /var/spool/texfonts
	    for SUBDIR in pk source tfm; do
		install -d -m 1777 -o root -g wheel /var/spool/texfonts/$SUBDIR
	    done
	fi
        ;;
    POST-INSTALL)
	cat <<EOT
---------------------------------------------------------------------------
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 ${PKG_PREFIX}/share/texmf/doc/tetex/.
---------------------------------------------------------------------------
EOT
	;;
    *)
	echo "Unexpected Argument $2!!"
	exit 1
	;;
esac

exit 0