1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00
freebsd-ports/comms/mgetty+sendfax/scripts/configure
2000-09-10 22:46:11 +00:00

28 lines
459 B
Bash

#!/bin/sh
cd $WRKSRC || exit 1
sed -e s:/usr/local:$PREFIX: < policy.h-dist > policy.h
cat >> policy.h <<END
#undef DEFAULT_LOGIN_PROGRAM
#define DEFAULT_LOGIN_PROGRAM "/usr/bin/login"
#define CNDFILE "dialin.config"
#undef LOCK
#define LOCK "/var/spool/lock/LCK..%s"
#undef FAX_LOG
#define FAX_LOG "/var/spool/fax/Faxlog"
#undef MAILER
#define MAILER "/usr/sbin/sendmail"
#undef DEVICE_GROUP
#define DEVICE_GROUP "uucp"
END
exit 0