bc5d806785
Don't install .cf files to /etc/mail directly at all; offer a message about how to install them instead. Don't create /etc/mail/statistics. Create mqueue dirs at install via MAKE_DIRS. Should fix PR pkg/20852. Make sure SMRSH_CMDDIR gets to the compile defs. Fixes PR pkg/34513.
49 lines
1.4 KiB
Text
49 lines
1.4 KiB
Text
# $NetBSD: Makefile.common,v 1.39 2006/10/12 21:04:27 tv Exp $
|
|
#
|
|
# Makefile fragment shared with libmilter
|
|
#
|
|
|
|
DISTNAME= sendmail.${DIST_VERS}
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ftp://ftp.sendmail.org/pub/sendmail/ \
|
|
ftp://ftp.sendmail.org/pub/sendmail/past-releases/ \
|
|
ftp://ftp.fu-berlin.de/pub/unix/mail/sendmail/ \
|
|
ftp://ftp.ayamura.org/pub/sendmail/
|
|
|
|
MAINTAINER= tv@NetBSD.org
|
|
HOMEPAGE= http://www.sendmail.org/
|
|
|
|
LICENSE= sendmail-license
|
|
|
|
DISTINFO_FILE?= ${.CURDIR}/../../mail/sendmail/distinfo
|
|
FILESDIR?= ${.CURDIR}/../../mail/sendmail/files
|
|
PATCHDIR?= ${.CURDIR}/../../mail/sendmail/patches
|
|
|
|
DIST_VERS= 8.13.8
|
|
|
|
MAKE_ENV+= BSD_BINOWN=${BINOWN:Q} BSD_BINGRP=${BINGRP:Q} \
|
|
BSD_MANOWN=${MANOWN:Q} BSD_MANGRP=${MANGRP:Q} \
|
|
BUILDLINK_DIR=${BUILDLINK_DIR:Q} \
|
|
SMRSH_CMDDIR=${SMRSH_CMDDIR:Q}
|
|
SITECONFIG= ${WRKSRC}/devtools/Site/site.config.m4
|
|
|
|
BUILD_DEFS+= SMRSH_CMDDIR
|
|
|
|
WRKSRC= ${WRKDIR}/sendmail-${DIST_VERS}
|
|
USE_TOOLS+= gm4
|
|
MAKE_ENV+= M4=${TOOLS_M4:Q}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.include "options.mk"
|
|
|
|
make-sendmail-siteconfig:
|
|
${CP} ${FILESDIR}/site.config.m4 ${SITECONFIG}
|
|
${CHMOD} +w ${SITECONFIG}
|
|
|
|
.if !empty(PKG_OPTIONS:Minet6)
|
|
${CAT} ${FILESDIR}/site.config.m4-v6 >>${SITECONFIG}
|
|
.if ${OPSYS} != "SunOS" && ${OPSYS} != "BSDOS" && ${OPSYS} != "DragonFly"
|
|
${CAT} ${FILESDIR}/site.config.m4-v6-not-solaris >>${SITECONFIG}
|
|
.endif
|
|
.endif
|
|
${CAT} ${FILESDIR}/site.config.m4-milter >>${SITECONFIG}
|