From owner-svn-ports-all@freebsd.org Fri Sep 16 14:35:17 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7183BDC27A; Fri, 16 Sep 2016 14:35:17 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 765B4844; Fri, 16 Sep 2016 14:35:17 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8GEZGaW061774; Fri, 16 Sep 2016 14:35:16 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GEZGdt061773; Fri, 16 Sep 2016 14:35:16 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609161435.u8GEZGdt061773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 16 Sep 2016 14:35:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422256 - head/security/libp11 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 14:35:17 -0000 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 + +.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 +.include