mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
28 lines
459 B
Bash
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
|