diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2016-08-11 20:22:27 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2016-08-11 20:22:27 +0000 |
commit | 1b269fd4fd266ac950148ba2777dd2f8eaabef62 (patch) | |
tree | b3c817d0badeacf08ec67123a35ce6d5ff9ee24f /mail/sendmail | |
parent | 5ba5cd7eecd8472c19f22247e00e4e65566471b6 (diff) | |
download | freebsd-ports-1b269fd4fd266ac950148ba2777dd2f8eaabef62.zip |
- unbreak regressions with bdb 1.8.5
- restore compatibility with base
Diffstat (limited to 'mail/sendmail')
-rw-r--r-- | mail/sendmail/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/mail/sendmail/Makefile b/mail/sendmail/Makefile index 422893ac1a26..6ff41f947804 100644 --- a/mail/sendmail/Makefile +++ b/mail/sendmail/Makefile @@ -2,7 +2,7 @@ PORTNAME= sendmail PORTVERSION= 8.15.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail ipv6 MASTER_SITES= ftp://ftp.sendmail.org/pub/sendmail/ PKGNAMESUFFIX?= ${TLS_SUFFIX}${SASL_SUFFIX}${LDAP_SUFFIX}${BDB_SUFFIX}${PKGNAMESUFFIX2} @@ -21,7 +21,7 @@ CONFLICTS?= courier-0.* postfix-1.* postfix-2.* smail-3.* zmailer-2.* opensmtpd- USERS= smmsp GROUPS= smmsp -USES= bdb cpe uidfix +USES= cpe uidfix MAKE_ARGS= UBINOWN=${UID} UBINGRP=${GID} \ SBINOWN=${UID} SBINGRP=${GID} \ GBINOWN=${UID} GBINGRP=${GID} \ @@ -57,6 +57,8 @@ CYRUSLOOKUP_DESC= Enable cyruslookup feature PICKY_HELO_CHECK_DESC= Enable picky HELO check MILTER_DESC= Enable milter support +BDB_USES= bdb +TLS_USES= ssl LDAP_USE= OPENLDAP=yes SASL_LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 SASLAUTHD_RUN_DEPENDS= ${LOCALBASE}/sbin/saslauthd:security/cyrus-sasl2-saslauthd @@ -118,9 +120,6 @@ SITE+= ${FILESDIR}/site.config.m4.ldap .if ${PORT_OPTIONS:MMILTER} SITE+= ${FILESDIR}/site.config.m4.milter .endif -.if ${PORT_OPTIONS:MTLS} -USES+= ssl -.endif SED_SCRIPT= -e "s|\`-O\'|\`${CFLAGS}\'|" \ -e 's|%%CC%%|${CC}|' -e 's|%%LD%%|${LD}|' |