summaryrefslogtreecommitdiff
path: root/textproc/latex2html/pkg/DEINSTALL
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2000-11-03 01:05:06 +0000
committerjlam <jlam@pkgsrc.org>2000-11-03 01:05:06 +0000
commitf7cd5e5de559c133eb5f585bd7f13a4bef1092ae (patch)
treeda2072d9634d1c8bc0f7dd4c05476e2f822d2edb /textproc/latex2html/pkg/DEINSTALL
parent9c9afb6b528f3bf05904ca605079a303c89a633d (diff)
downloadpkgsrc-f7cd5e5de559c133eb5f585bd7f13a4bef1092ae.tar.gz
* Relax requirement on ghostscript to also allow ghostscript-nox11.
* Enable GIF and PNG support. * Specify path to install TeX files to avoid problems when /usr/pkg is a symbolic link. * Add INSTALL/DEINSTALL targets to properly regenerate teTeX's ls-R file.
Diffstat (limited to 'textproc/latex2html/pkg/DEINSTALL')
-rw-r--r--textproc/latex2html/pkg/DEINSTALL21
1 files changed, 21 insertions, 0 deletions
diff --git a/textproc/latex2html/pkg/DEINSTALL b/textproc/latex2html/pkg/DEINSTALL
new file mode 100644
index 00000000000..caee855db60
--- /dev/null
+++ b/textproc/latex2html/pkg/DEINSTALL
@@ -0,0 +1,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