aboutsummaryrefslogtreecommitdiffstats
path: root/print/tex/scripts
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1994-09-29 16:56:20 +0800
committerjkh <jkh@FreeBSD.org>1994-09-29 16:56:20 +0800
commitd6cb0ac3d47fffd3b1a965c5afbf3dbf960bd627 (patch)
treefcdf072775d5df850f3f10be3772385c7bbf5b8c /print/tex/scripts
parentd08f7ab673a23dfc721b78f5b35e45c3f7b757f3 (diff)
downloadfreebsd-ports-gnome-d6cb0ac3d47fffd3b1a965c5afbf3dbf960bd627.tar.gz
freebsd-ports-gnome-d6cb0ac3d47fffd3b1a965c5afbf3dbf960bd627.tar.zst
freebsd-ports-gnome-d6cb0ac3d47fffd3b1a965c5afbf3dbf960bd627.zip
Bring in Jean-Marc Zucconi's tex port. The Makefile is kind of weird,
and he has his own ftp-get routine, but knowing how complex the TeX distribution is, I suspect that all of this obfuscation is probably justified! Submitted by: jmz
Diffstat (limited to 'print/tex/scripts')
-rw-r--r--print/tex/scripts/configure14
1 files changed, 14 insertions, 0 deletions
diff --git a/print/tex/scripts/configure b/print/tex/scripts/configure
new file mode 100644
index 000000000000..d4d90c14bc7c
--- /dev/null
+++ b/print/tex/scripts/configure
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+if [ $# != 3 ]; then exit 1; fi
+
+#
+# The subdirectory searching in kpathsearch sometimes fails (don't know why)
+# so let's disable the feature (It can be reenabled with the proper environment
+# variables though.
+#
+cd $3/kpathsea || exit 1;
+mv paths.h.in paths.h.in.orig || exit 1;
+sed -e s://:/: <paths.h.in.orig >paths.h.in || exit 1;
+
+exit 0; \ No newline at end of file