9d7c39d873
Both programs are in this package so put the pam.d file in there too. Reported by: emaste Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D24161
40 lines
519 B
Makefile
40 lines
519 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
NO_OBJ=
|
|
|
|
CONFGROUPS= CONFS
|
|
CONFS= README \
|
|
cron \
|
|
imap \
|
|
login \
|
|
other \
|
|
passwd pop3 \
|
|
sshd su system \
|
|
xdm
|
|
|
|
CONFDIR= /etc/pam.d
|
|
CONFSMODE_README= 444
|
|
|
|
.if ${MK_AT} != "no"
|
|
CONFGROUPS+= AT
|
|
AT+= atrun
|
|
ATPACKAGE+= at
|
|
.endif
|
|
|
|
.if ${MK_FTP} != "no"
|
|
CONFGROUPS+= FTP
|
|
FTP+= ftpd
|
|
|
|
afterinstallconfig:
|
|
${INSTALL_LINK} ${TAG_ARGS} ${DESTDIR}${CONFDIR}/ftpd ${DESTDIR}${CONFDIR}/ftp
|
|
.endif
|
|
|
|
.if ${MK_TELNET} != "no"
|
|
CONFGROUPS+= TELNET
|
|
TELNET+= telnetd
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|