1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5PACKAGE= newsyslog 6CONFSDIR= /etc/newsyslog.conf.d 7 8CONFGROUPS= CONFS 9CONFS= 10 11.if ${MK_FTP} != "no" 12CONFGROUPS+= FTP 13FTP+= ftp.conf 14FTPPACKAGE= ftpd 15FTPDIR= /etc/newsyslog.conf.d 16.endif 17 18.if ${MK_LPR} != "no" 19CONFS+= lpr.conf 20.endif 21 22.if ${MK_OFED} != "no" 23CONFS+= opensm.conf 24.endif 25 26.if ${MK_PF} != "no" 27CONFGROUPS+= PF 28PF+= pf.conf 29PFPACKAGE= pf 30PFDIR= /etc/newsyslog.conf.d 31.endif 32 33.if ${MK_PPP} != "no" 34CONFGROUPS+= PPP 35PPP+= ppp.conf 36PPPPACKAGE= ppp 37PPPDIR= /etc/newsyslog.conf.d 38.endif 39 40.if ${MK_SENDMAIL} != "no" 41CONFGROUPS+= SENDMAIL 42SENDMAIL+= sendmail.conf 43SENDMAILPACKAGE= sendmail 44SENDMAILDIR= /etc/newsyslog.conf.d 45.endif 46 47.include <bsd.prog.mk> 48