summaryrefslogtreecommitdiff
path: root/mail/sendmail/Makefile
blob: 16a9564c7a1538ca6ad81311ea1256606193ded9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# $NetBSD: Makefile,v 1.57 2003/04/17 16:13:54 manu Exp $

.include "../../mail/sendmail/Makefile.common"

PKGNAME=	sendmail-${DIST_VERS}nb1
COMMENT=	The well known Mail Transport Agent

MESSAGE_SRC=	${WRKDIR}/.MESSAGE_SRC
PLIST_SRC=	${WRKDIR}/.PLIST_SRC

.if ${OPSYS} == "SunOS"
USE_DB2?=	YES
.else
USE_DB2?=	NO
.endif
.if defined(USE_DB4) && ${USE_DB4} == YES
.include "../../databases/db4/buildlink2.mk"
.elif ${USE_DB2} == YES
.include "../../databases/db/buildlink2.mk"
.endif

.if defined(USE_LDAP) && ${USE_LDAP} == YES
.include "../../databases/openldap/buildlink2.mk"
.endif

.if defined(USE_SASL2) && ${USE_SASL2} == YES
.include "../../security/cyrus-sasl2/buildlink2.mk"
.elif defined(USE_SASL) && ${USE_SASL} == YES
.include "../../security/cyrus-sasl/buildlink2.mk"
.endif

.if defined(USE_STARTTLS) && ${USE_STARTTLS} == YES
.include "../../security/openssl/buildlink2.mk"
.endif

USE_TCPWRAPPERS?=	YES
.if ${USE_TCPWRAPPERS} == YES
.include "../../security/tcp_wrappers/buildlink2.mk"
.endif

post-patch: make-sendmail-siteconfig
.if ${USE_TCPWRAPPERS} == YES
	${CAT} ${FILESDIR}/site.config.m4-tcpwrappers >>${SITECONFIG}
	${ECHO} -n ' TCPWRAPPERS' >>${DESCR_SRC}
.endif
.if defined(USE_LDAP) && ${USE_LDAP} == YES
	${CAT} ${FILESDIR}/site.config.m4-ldap >>${SITECONFIG}
	${ECHO} -n ' LDAP' >>${DESCR_SRC}
.endif
.if defined(USE_DB4) && ${USE_DB4} == YES
	${CAT} ${FILESDIR}/site.config.m4-db4 >>${SITECONFIG}
	${ECHO} -n ' DB4' >>${DESCR_SRC}
.elif ${USE_DB2} == YES
	${CAT} ${FILESDIR}/site.config.m4-db2 >>${SITECONFIG}
	${ECHO} -n ' DB2' >>${DESCR_SRC}
.endif
.if defined(USE_STARTTLS) && ${USE_STARTTLS} == YES
	${CAT} ${FILESDIR}/site.config.m4-starttls >>${SITECONFIG}
	${ECHO} -n ' STARTTLS' >>${DESCR_SRC}
.endif
.if defined(USE_SASL2) && ${USE_SASL2} == YES
	${CAT} ${FILESDIR}/site.config.m4-sasl2 >>${SITECONFIG}
	${ECHO} -n ' SASL2' >>${DESCR_SRC}
.elif defined(USE_SASL) && ${USE_SASL} == YES
	${CAT} ${FILESDIR}/site.config.m4-sasl >>${SITECONFIG}
	${ECHO} -n ' SASL' >>${DESCR_SRC}
.endif
	${ECHO} >>${DESCR_SRC}

do-build:
	@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ./Build)

post-build:
	${SED} -e 's#@@PREFIX@@#${PREFIX}#g' \
	  <${FILESDIR}/mailer.conf >${WRKDIR}/mailer.conf.sendmail
	${CP} ${PKGDIR}/PLIST ${PLIST_SRC}
	${CP} ${PKGDIR}/MESSAGE ${MESSAGE_SRC}
.if ${USE_DB2} == YES
	${ECHO} "" >>${MESSAGE_SRC}
	${ECHO} "If you are upgrading from \"sendmail\" 8.8.x don't forget to rebuild all" >>${MESSAGE_SRC}
	${ECHO} "databases with \"${PREFIX}/bin/newaliases\" and \"${PREFIX}/sbin/makemap\"." >>${MESSAGE_SRC}
	${ECHO} >>${PLIST_SRC} "@exec mv -f /usr/sbin/makemap /usr/sbin/makemap.8.8 || true"
	${ECHO} >>${PLIST_SRC} "@unexec mv -f /usr/sbin/makemap.8.8 /usr/sbin/makemap || true"
.endif

pre-install:
	${INSTALL_DATA_DIR} ${PREFIX}/libexec/sendmail

post-install:
	${INSTALL_DATA} ${WRKDIR}/mailer.conf.sendmail ${PREFIX}/etc
	${CP} -pr ${WRKSRC}/cf ${PREFIX}/share/sendmail
	${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/share/sendmail
.if ${USE_DB2} == YES
	${MV} -f /usr/sbin/makemap /usr/sbin/makemap.8.8 || ${TRUE}
.endif
.if defined(USE_MILTER) && ${USE_MILTER} == "YES"
	${INSTALL_DATA} ${WRKSRC}/obj.`uname -srm | ${TR} \  .`/libsm/libsm.a \
		${PREFIX}/lib
	${INSTALL_DATA} \
		${WRKSRC}/obj.`uname -srm | ${TR} \  .`/libsmutil/libsmutil.a \
		${PREFIX}/lib
	${ECHO} "lib/libsm.a" >> ${WRKDIR}/.PLIST_SRC
	${ECHO} "lib/libsmutil.a" >> ${WRKDIR}/.PLIST_SRC
.endif

USE_PKGINSTALL=	yes
PKG_GROUPS=	smmsp
PKG_USERS=	smmsp:smmsp::Sendmail\\ Message\\ Submission\\ Program

.include "../../mk/bsd.pkg.mk"

# has to be below include for bsd.pkg.mk, else substition fails
OBJDIR!=	${ECHO} obj.`uname -srm | ${TR} \  .`