svn commit: r422448 - head/net-p2p/zetacoin

John Marino marino at FreeBSD.org
Mon Sep 19 16:42:00 UTC 2016


Author: marino
Date: Mon Sep 19 16:41:59 2016
New Revision: 422448
URL: https://svnweb.freebsd.org/changeset/ports/422448

Log:
  net-p2p/zetacoin: IGNORE when SSL_DEFAULT matches libressl
  
  Zetacoin explicitly fails to configure when libressl is detected.  It can
  only be built with OpenSSL right now (similar to litecoin).
  
  Approved by:	SSL blanket

Modified:
  head/net-p2p/zetacoin/Makefile

Modified: head/net-p2p/zetacoin/Makefile
==============================================================================
--- head/net-p2p/zetacoin/Makefile	Mon Sep 19 16:21:18 2016	(r422447)
+++ head/net-p2p/zetacoin/Makefile	Mon Sep 19 16:41:59 2016	(r422448)
@@ -91,6 +91,13 @@ USERS=		${PORTNAME}
 GROUPS=		${PORTNAME}
 .endif
 
+.include <bsd.port.pre.mk>
+
+.if ${SSL_DEFAULT:Mlibressl*}
+# The configure script will output this message, so save the user the trouble
+IGNORE=	Detected LibreSSL: This is NOT supported, and may break consensus compatibility!
+.endif
+
 post-patch:
 	${MKDIR} ${WRKSRC}/src/build-aux
 
@@ -113,4 +120,4 @@ do-install-X11-off:
 	${INSTALL_PROGRAM} -s ${WRKSRC}/src/${DAEMON} ${STAGEDIR}${PREFIX}/bin/${DAEMON}
 	${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.conf.sample ${STAGEDIR}${PREFIX}/etc/${PORTNAME}.conf.sample
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>


More information about the svn-ports-all mailing list