This is related to pkgbase and changes these to use CONFS so that these are tagged as config files. Approved by: AllanJude (mentor) Sponsored by: Essen Hackathon Differential Revision: https://reviews.freebsd.org/D16694
38 lines
449 B
Makefile
38 lines
449 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
CONFSDIR= /etc/newsyslog.conf.d
|
|
|
|
CONFS=
|
|
|
|
.if ${MK_AMD} != "no"
|
|
CONFS+= amd.conf
|
|
.endif
|
|
|
|
.if ${MK_FTP} != "no"
|
|
CONFS+= ftp.conf
|
|
.endif
|
|
|
|
.if ${MK_LPR} != "no"
|
|
CONFS+= lpr.conf
|
|
.endif
|
|
|
|
.if ${MK_OFED} != "no"
|
|
CONFS+= opensm.conf
|
|
.endif
|
|
|
|
.if ${MK_PF} != "no"
|
|
CONFS+= pf.conf
|
|
.endif
|
|
|
|
.if ${MK_PPP} != "no"
|
|
CONFS+= ppp.conf
|
|
.endif
|
|
|
|
.if ${MK_SENDMAIL} != "no"
|
|
CONFS+= sendmail.conf
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|