diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-06 13:53:09 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-06 13:53:09 +0000 |
commit | 4668b601fbedadc86669df1351233d0358caaf8e (patch) | |
tree | 6e8fea336ffad9c632b5df445ec4927bf75f0c31 /dns/bind910 | |
parent | ee730e2ec24b2231ef169b3c6740ea3772d483e4 (diff) | |
download | ports-4668b601fbedadc86669df1351233d0358caaf8e.tar.gz ports-4668b601fbedadc86669df1351233d0358caaf8e.zip |
Notes
Diffstat (limited to 'dns/bind910')
-rw-r--r-- | dns/bind910/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/dns/bind910/Makefile b/dns/bind910/Makefile index fc2bc61a544a..d5c3a6f9138e 100644 --- a/dns/bind910/Makefile +++ b/dns/bind910/Makefile @@ -219,15 +219,9 @@ SUB_LIST+= NOBASE="" BASE="@comment " USE_RC_SUBR+= named SUB_FILES+= named.conf .endif # !defined(BIND_TOOLS_SLAVE) -.if ${PORT_OPTIONS:MGOST} || ${PORT_OPTIONS:MGOST_ASN1} -WITH_OPENSSL_PORT=yes -.endif .else PLIST_SUB+= NOBASE="@comment " BASE="" SUB_LIST+= NOBASE="@comment " BASE="" -.if ${PORT_OPTIONS:MSSL} -WITH_OPENSSL_PORT= yes -.endif .endif PKGDEINSTALL= ${PKGINSTALL} @@ -235,6 +229,14 @@ PKGDEINSTALL= ${PKGINSTALL} PORTDOCS= * +.include <bsd.port.pre.mk> + +.if ( ${PORT_OPTIONS:MGOST} || ${PORT_OPTIONS:MGOST_ASN1} ) && defined(WITH_OPENSSL_BASE) +BROKEN= OpenSSL from the base system does not support GOST, add \ + WITH_OPENSSL_PORT=yes to your /etc/make.conf and rebuild everything \ + that needs SSL. +.endif + post-patch: @${REINPLACE_CMD} -e 's|readline/readline.h|editline/readline.h|; \ s|readline/history.h|histedit.h|' \ @@ -293,4 +295,4 @@ post-install: .endif # BIND_TOOLS_SLAVE -.include <bsd.port.mk> +.include <bsd.port.post.mk> |