summaryrefslogtreecommitdiff
path: root/print/teTeX-bin/pkg/DEINSTALL
blob: 46f419a88022ab6744327664792dc6d1f0d2eafa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh
#
# $NetBSD: DEINSTALL,v 1.3 1999/08/22 03:29:50 hubertf Exp $
#

case "$2" in
        DEINSTALL) cat <<EOF

---------------------------------------------------------------------------
Any fonts that were created on the fly when running TeX were created
in the directory /var/spool/texfonts. You may want to remove this 
directory manually if you don't need it any longer:

	rm -fr /var/spool/texfonts

For further information have a look at $PKG_PREFIX/share/texmf/doc/tetex/.
---------------------------------------------------------------------------

EOF
        ;;
esac    

exit 0