From owner-svn-ports-all@freebsd.org Fri Sep 16 14:06:04 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 36C58BDCB73; Fri, 16 Sep 2016 14:06:04 +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 042917C1; Fri, 16 Sep 2016 14:06:03 +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 u8GE63so050479; Fri, 16 Sep 2016 14:06:03 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8GE63a6050478; Fri, 16 Sep 2016 14:06:03 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201609161406.u8GE63a6050478@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:06:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422255 - head/security/openscep 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:06:04 -0000 Author: marino Date: Fri Sep 16 14:06:02 2016 New Revision: 422255 URL: https://svnweb.freebsd.org/changeset/ports/422255 Log: security/openscep: Mark IGNORE if SSL_DEFAULT matches libressl The fix for LibreSSL support is not immediately obvious, so mark the port IGNOREd until the LibreSSL case is fixed. Approved by: SSL blanket Modified: head/security/openscep/Makefile Modified: head/security/openscep/Makefile ============================================================================== --- head/security/openscep/Makefile Fri Sep 16 13:41:59 2016 (r422254) +++ head/security/openscep/Makefile Fri Sep 16 14:06:02 2016 (r422255) @@ -12,15 +12,14 @@ COMMENT= Open source scep server CONFLICTS_INSTALL= nss-3.* -USES= gmake libtool -USE_OPENSSL= yes +USES= gmake libtool ssl USE_OPENLDAP= yes USE_APACHE= 22+ GNU_CONFIGURE= yes USE_LDCONFIG= yes -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib +CPPFLAGS+= -I${OPENSSLINC} -I${LOCALBASE}/include +LIBS+= -L${OPENSSLLIB} -L${LOCALBASE}/lib CONFIGURE_ARGS= --with-html-install-dir="${PREFIX}/www/openscep" \ --with-cgi-install-dir="${PREFIX}/www/cgi-bin/openscep" \ --with-openscep-dir="${PREFIX}/etc/openscep" \ @@ -32,6 +31,12 @@ LOCAL_CONF_FILES= openscep.cnf openscep. SUB_FILES= pkg-message SUB_LIST= CONF_DIR="${CONF_DIR}" CONF_FILES="${LOCAL_CONF_FILES}" +.include + +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= Detected LibreSSL (unknown ASN1 functions) +.endif + post-patch: @${REINPLACE_CMD} -e '/^subdirs=/ s|libltdl||' ${WRKSRC}/configure @${REINPLACE_CMD} -e '/^SUBDIRS =/ s|libltdl||' ${WRKSRC}/Makefile.in @@ -59,4 +64,4 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/ldap/${f} ${STAGEDIR}${CONF_DIR}/${f}.sample .endfor -.include +.include