mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
debd26aecc
-> ${PREFIX}/share)
14 lines
362 B
Bash
14 lines
362 B
Bash
#!/bin/sh
|
|
|
|
cd $WRKSRC/src-3.0 || exit 1;
|
|
cp Makefile.gen Makefile || exit 1;
|
|
echo "STYDIR=$PREFIX/share/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
|