1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/comms/mgetty+sendfax/scripts/configure

28 lines
459 B
Plaintext
Raw Normal View History

#!/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"
1998-07-16 06:44:42 +00:00
#undef DEVICE_GROUP
#define DEVICE_GROUP "uucp"
END
1994-11-21 04:18:59 +00:00
exit 0