freebsd-ports/comms/mgetty+sendfax/scripts/configure

28 lines
459 B
Text
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 08:44:42 +02:00
#undef DEVICE_GROUP
#define DEVICE_GROUP "uucp"
END
1994-11-21 05:18:59 +01:00
exit 0