1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/audio/xcd/scripts/configure
Thomas Gellekum 9421a44868 Back out changes to use tcl81.
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.
1998-03-20 14:35:31 +00:00

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;