Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Sep 2016 14:35:16 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r422256 - head/security/libp11
Message-ID:  <201609161435.u8GEZGdt061773@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Fri Sep 16 14:35:16 2016
New Revision: 422256
URL: https://svnweb.freebsd.org/changeset/ports/422256

Log:
  security/libp11: Mark IGNORE if SSL_DEFAULT matchs libressl
  
  This port has numerous OPENSSL_VERSION_NUMBER preprocessor checks which
  are nontrivial to modify for LibreSSL support.  Mark the port IGNOREd
  for LibreSSL case until somebody manages to support libressl.
  
  Approved by:	SSL blanket

Modified:
  head/security/libp11/Makefile

Modified: head/security/libp11/Makefile
==============================================================================
--- head/security/libp11/Makefile	Fri Sep 16 14:06:02 2016	(r422255)
+++ head/security/libp11/Makefile	Fri Sep 16 14:35:16 2016	(r422256)
@@ -18,9 +18,8 @@ OPTIONS_DEFINE=	DOCS EXAMPLES
 USE_GITHUB=	yes
 GH_ACCOUNT=	OpenSC
 
-USE_OPENSSL=	yes
 GNU_CONFIGURE=	yes
-USES=		autoreconf libtool pkgconfig
+USES=		autoreconf libtool pkgconfig ssl
 USE_LDCONFIG=	yes
 
 MAKE_JOBS_UNSAFE=	yes
@@ -36,10 +35,16 @@ INSTALL_TARGET=	install-strip
 
 PORTDOCS=	*
 
+.include <bsd.port.pre.mk>
+
+.if ${SSL_DEFAULT:Mlibressl*}
+IGNORE=	Detected LibreSSL (numerous OPENSSL_VERSION_NUMBER preprocessor conditions)
+.endif
+
 post-install-EXAMPLES-on:
 	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
 	${INSTALL_DATA}	${WRKSRC}/examples/README ${STAGEDIR}${EXAMPLESDIR}
 	${INSTALL_DATA}	${WRKSRC}/examples/Makefile ${STAGEDIR}${EXAMPLESDIR}
 	${INSTALL_DATA}	${WRKSRC}/examples/*.c ${STAGEDIR}${EXAMPLESDIR}
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609161435.u8GEZGdt061773>