diff options
author | hubertf <hubertf@pkgsrc.org> | 1999-08-22 03:29:50 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1999-08-22 03:29:50 +0000 |
commit | 1673752a64110d92838716c166950ce393907b16 (patch) | |
tree | 4a7f49bf7ae1ece935b433fad2afe9e4a07f0bbd /print/teTeX-bin | |
parent | 2c5efcb495c9d953aff60acfa651d54fd1e8b7ff (diff) | |
download | pkgsrc-1673752a64110d92838716c166950ce393907b16.tar.gz |
regard command line arguments
Diffstat (limited to 'print/teTeX-bin')
-rwxr-xr-x | print/teTeX-bin/pkg/DEINSTALL | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/print/teTeX-bin/pkg/DEINSTALL b/print/teTeX-bin/pkg/DEINSTALL index b238994a3f0..46f419a8802 100755 --- a/print/teTeX-bin/pkg/DEINSTALL +++ b/print/teTeX-bin/pkg/DEINSTALL @@ -1,9 +1,11 @@ #! /bin/sh # -# $NetBSD: DEINSTALL,v 1.2 1999/08/17 23:38:17 tron Exp $ +# $NetBSD: DEINSTALL,v 1.3 1999/08/22 03:29:50 hubertf Exp $ # -cat <<EOT +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 @@ -14,6 +16,8 @@ directory manually if you don't need it any longer: For further information have a look at $PKG_PREFIX/share/texmf/doc/tetex/. --------------------------------------------------------------------------- -EOT +EOF + ;; +esac exit 0 |