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