blob: 7bc179ba4a6705c5840e89cae40b50c66355d35a (
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.1 2001/10/31 23:28:05 zuntum 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
|