summaryrefslogtreecommitdiff
path: root/textproc/latex2html/pkg/DEINSTALL
blob: caee855db605e34adc09205be7e6a225c7f2b352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.1 2000/11/03 01:05:06 jlam Exp $

PKGNAME=$1
STAGE=$2

case ${STAGE} in
DEINSTALL)
	;;
POST-DEINSTALL)
	# Rebuild the ls-R database after removing files from the teTeX tree.
	#
	mktexlsr
	;;
*)
	echo "Unexpected argument: ${STAGE}"
	exit 1
	;;
esac
exit 0