1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/print/dviselect/scripts/configure
Jean-Marc Zucconi 4a9f39b5ce The distfile disapeared from the original site. Use another MASTER_SITES.
The version number is the same but there are slight changes in the sources.
This is why all the files have changed.
1997-08-19 18:05:37 +00:00

11 lines
389 B
Bash

#!/bin/sh
PREFIX=${PREFIX:-/usr/local}
echo "BINDIR = $PREFIX/bin" >> $WRKSRC/Makefile || exit 1;
echo "MANDIR = $PREFIX/man" >> $WRKSRC/Makefile || exit 1;
echo "all: default" >> $WRKSRC/Makefile || exit 1;
echo "CFLAGS= $CFLAGS -I../h -I./h -DHAVE_VPRINTF" >> $WRKSRC/Makefile || exit 1;
echo "MFLAGS=CFLAGS=\"\${CFLAGS}\"" >> $WRKSRC/Makefile || exit 1;
exit 0;