mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
9421a44868
I have left out zircon, which seems to have provisions for tcl81, and hfsutils and filerunner, which have been upgraded and probably checked in the meantime.
16 lines
211 B
Bash
16 lines
211 B
Bash
#!/bin/sh
|
|
|
|
cd $WRKSRC || exit 1;
|
|
|
|
cat >> Makefile << END
|
|
|
|
BINDIR = $PREFIX/bin
|
|
CDDIR = $PREFIX/lib/xcd
|
|
MANDIR = $PREFIX/man/man1
|
|
|
|
END
|
|
|
|
mv xcd.in xcd.in~
|
|
sed -e 's/wish4\.1/wish8.0/' < xcd.in~ > xcd.in
|
|
exit 0;
|