forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
13 lines
362 B
Bash
13 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
|