svn commit: r399426 - head/security/libressl

Bernard Spil brnrd at FreeBSD.org
Fri Oct 16 07:13:05 UTC 2015


Author: brnrd
Date: Fri Oct 16 07:13:03 2015
New Revision: 399426
URL: https://svnweb.freebsd.org/changeset/ports/399426

Log:
  security/libressl: Fix memory leak and buffer overflow DoS vulnerability
  
    * Update to 2.2.4 (fixing vulnerabilities)
    * Create vuxml entry
  
  Differential Revision: https://reviews.freebsd.org/D3916
  Submitted by:	Bernard Spil <brnrd at freebsd.org>
  Reviewed by:	delphij
  Approved by:	delphij (secteam)
  MFC after:	2015Q4
  Security:	e75a96df-73ca-11e5-9b45-b499baebfeaf
  Security:	CVE-2015-5333, CVE-2015-5334

Modified:
  head/security/libressl/Makefile
  head/security/libressl/distinfo
  head/security/libressl/pkg-plist

Modified: head/security/libressl/Makefile
==============================================================================
--- head/security/libressl/Makefile	Fri Oct 16 07:08:40 2015	(r399425)
+++ head/security/libressl/Makefile	Fri Oct 16 07:13:03 2015	(r399426)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	libressl
-PORTVERSION=	2.2.3
+PORTVERSION=	2.2.4
 CATEGORIES=	security devel
 MASTER_SITES=	OPENBSD/LibreSSL
 
@@ -14,7 +14,12 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 CPE_VENDOR=	openbsd
 
-CONFLICTS?=	openssl-[0-9]*
+OPTIONS_DEFINE=	MAN3
+OPTIONS_DEFAULT=	MAN3
+MAN3_DESC=	Install API manpages (section 3)
+
+CONFLICTS?=	openssl-[0-9]* \
+		libressl-devel-[0-9]*
 
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-silent-rules
@@ -32,4 +37,8 @@ CONFIGURE_TARGET=	x86_64-portbld-${OPSYS
 regression-test: build
 	cd ${WRKSRC} && ${MAKE} check
 
+post-install-MAN3-off:
+	${RM} -rf ${STAGEDIR}/${PREFIX}/man/man3
+	${REINPLACE_CMD} -e '/^man\/man3/d' ${TMPPLIST}
+
 .include <bsd.port.post.mk>

Modified: head/security/libressl/distinfo
==============================================================================
--- head/security/libressl/distinfo	Fri Oct 16 07:08:40 2015	(r399425)
+++ head/security/libressl/distinfo	Fri Oct 16 07:13:03 2015	(r399426)
@@ -1,2 +1,2 @@
-SHA256 (libressl-2.2.3.tar.gz) = a1ccc21adf91d60e99246031b99c930c9af5e1b1b5a61b1bec87beef6f16d882
-SIZE (libressl-2.2.3.tar.gz) = 2967547
+SHA256 (libressl-2.2.4.tar.gz) = 6b409859be8654afc3862549494e097017e64c8d167f12584383586306ef9a7e
+SIZE (libressl-2.2.4.tar.gz) = 2966157

Modified: head/security/libressl/pkg-plist
==============================================================================
--- head/security/libressl/pkg-plist	Fri Oct 16 07:08:40 2015	(r399425)
+++ head/security/libressl/pkg-plist	Fri Oct 16 07:13:03 2015	(r399426)
@@ -38,7 +38,6 @@ include/openssl/krb5_asn.h
 include/openssl/lhash.h
 include/openssl/md4.h
 include/openssl/md5.h
-include/openssl/mdc2.h
 include/openssl/modes.h
 include/openssl/obj_mac.h
 include/openssl/objects.h


More information about the svn-ports-all mailing list