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