aboutsummaryrefslogtreecommitdiff
path: root/mail/opensmtpd
diff options
context:
space:
mode:
authorDima Panov <fluffy@FreeBSD.org>2018-11-05 23:28:55 +0000
committerDima Panov <fluffy@FreeBSD.org>2018-11-05 23:28:55 +0000
commit2554ea9c97db2177620c1d76524229051722859a (patch)
tree7a288ab57f3ebad486af5a2122f73b2a4f47d4e8 /mail/opensmtpd
parent8d5a4d502fcd8d38fa4fd058c26b354b38be9e49 (diff)
downloadports-2554ea9c97db2177620c1d76524229051722859a.tar.gz
ports-2554ea9c97db2177620c1d76524229051722859a.zip
- While major 6.4 update still cooking (authors dropped openssl support at all
in favor of libressl), mark OpenSMTPd as BROKEN with openssl 1.1.x api - Use https in pkg-descr url MFH: 2018Q4
Notes
Notes: svn path=/head/; revision=484257
Diffstat (limited to 'mail/opensmtpd')
-rw-r--r--mail/opensmtpd/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/mail/opensmtpd/Makefile b/mail/opensmtpd/Makefile
index 3e813dae527d..dcdc3c793379 100644
--- a/mail/opensmtpd/Makefile
+++ b/mail/opensmtpd/Makefile
@@ -15,6 +15,9 @@ COMMENT= Security- and simplicity-focused SMTP server from OpenBSD
LICENSE= ISCL
LICENSE_FILE= ${WRKSRC}/LICENSE
+BROKEN_SSL= openssl111
+BROKEN_SSL_REASON_openssl111= Incompatible with Openssl 1.1.x yet
+
LIB_DEPENDS= libevent.so:devel/libevent
OPTIONS_DEFINE= CA_BUNDLE LIBASRDEVEL MAILERCONF PAM TABLE_DB
@@ -55,10 +58,16 @@ CONFIGURE_ARGS+= --with-libasr=${LOCALBASE} \
--with-libssl=${OPENSSLBASE} \
--sysconfdir=${PREFIX}/etc/mail/
+.include <bsd.port.pre.mk>
+
+.if ${OPSYS} == FreeBSD && ${OSVERSION} > 1200084
+BROKEN= Incompatible with Openssl 1.1.x yet
+.endif
+
post-patch:
${REINPLACE_CMD} -e '/chmod 2555/d' ${WRKSRC}/mk/smtpctl/Makefile.in
post-install-TABLE_DB-on:
@${LN} -sf ${PREFIX}/sbin/smtpctl ${STAGEDIR}${PREFIX}/libexec/opensmtpd/makemap
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>