aboutsummaryrefslogtreecommitdiff
path: root/print/makeindex/scripts/configure
diff options
context:
space:
mode:
Diffstat (limited to 'print/makeindex/scripts/configure')
-rw-r--r--print/makeindex/scripts/configure13
1 files changed, 13 insertions, 0 deletions
diff --git a/print/makeindex/scripts/configure b/print/makeindex/scripts/configure
new file mode 100644
index 000000000000..e1634b5711cc
--- /dev/null
+++ b/print/makeindex/scripts/configure
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+cd $WRKSRC/src-3.0 || exit 1;
+cp Makefile.gen Makefile || exit 1;
+echo "STYDIR=$PREFIX/lib/texmf/makeindx" >> Makefile || exit 1;
+echo "BINDIR=$PREFIX/bin" >> Makefile || exit 1;
+
+mv mkind.h mkind.h.orig || exit 1;
+sed -e s:/usr/local:$PREFIX: < mkind.h.orig > mkind.h
+
+cd regexp || exit 1;
+cp Makefile.psx Makefile || exit 1;
+exit 0