summaryrefslogtreecommitdiff
path: root/textproc/latex2html/pkg
diff options
context:
space:
mode:
authorjlam <jlam>2000-11-03 01:05:06 +0000
committerjlam <jlam>2000-11-03 01:05:06 +0000
commitf3bc9ae377fb8a618ccdc0e542446484b9ed55fb (patch)
treeda2072d9634d1c8bc0f7dd4c05476e2f822d2edb /textproc/latex2html/pkg
parentb07b73721da16c0a799793356442496847501903 (diff)
downloadpkgsrc-f3bc9ae377fb8a618ccdc0e542446484b9ed55fb.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')
-rw-r--r--textproc/latex2html/pkg/DEINSTALL21
-rw-r--r--textproc/latex2html/pkg/INSTALL21
2 files changed, 42 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
diff --git a/textproc/latex2html/pkg/INSTALL b/textproc/latex2html/pkg/INSTALL
new file mode 100644
index 00000000000..0725ec2f20a
--- /dev/null
+++ b/textproc/latex2html/pkg/INSTALL
@@ -0,0 +1,21 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1 2000/11/03 01:05:06 jlam Exp $
+
+PKGNAME=$1
+STAGE=$2
+
+case ${STAGE} in
+PRE-INSTALL)
+ ;;
+POST-INSTALL)
+ # Rebuild the ls-R database after adding files to the teTeX tree.
+ #
+ mktexlsr
+ ;;
+*)
+ echo "Unexpected argument: ${STAGE}"
+ exit 1
+ ;;
+esac
+exit 0