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