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" 18CONFS+= lpr.conf 19.endif 20 21.if ${MK_OFED} != "no" 22CONFS+= opensm.conf 23.endif 24 25.if ${MK_PF} != "no" 26CONFGROUPS+= PF 27PF+= pf.conf 28PFPACKAGE= pf 29PFDIR= /etc/newsyslog.conf.d 30.endif 31 32.if ${MK_PPP} != "no" 33CONFGROUPS+= PPP 34PPP+= ppp.conf 35PPPPACKAGE= ppp 36PPPDIR= /etc/newsyslog.conf.d 37.endif 38 39.if ${MK_SENDMAIL} != "no" 40CONFGROUPS+= SENDMAIL 41SENDMAIL+= sendmail.conf 42SENDMAILPACKAGE= sendmail 43SENDMAILDIR= /etc/newsyslog.conf.d 44.endif 45 46.include <bsd.prog.mk> 47