svn commit: r472263 - head/devel/libewf

Antoine Brodin antoine at FreeBSD.org
Tue Jun 12 16:40:33 UTC 2018


Author: antoine
Date: Tue Jun 12 16:40:32 2018
New Revision: 472263
URL: https://svnweb.freebsd.org/changeset/ports/472263

Log:
  Do not use ssl (EVP), this fixes build with OpenSSL 1.1
  
  PR:		228941

Modified:
  head/devel/libewf/Makefile

Modified: head/devel/libewf/Makefile
==============================================================================
--- head/devel/libewf/Makefile	Tue Jun 12 16:35:50 2018	(r472262)
+++ head/devel/libewf/Makefile	Tue Jun 12 16:40:32 2018	(r472263)
@@ -3,6 +3,7 @@
 
 PORTNAME=	libewf
 PORTVERSION=	20140803
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	https://github.com/libyal/libewf-legacy/releases/download/${PORTVERSION}/ \
 		LOCAL/antoine
@@ -13,18 +14,16 @@ COMMENT=	Library for support of the Expert Witness Com
 LICENSE=	LGPL3+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-BROKEN_SSL=	openssl-devel
-BROKEN_SSL_REASON_openssl-devel=	field has incomplete type 'EVP_MD_CTX' (aka 'struct evp_md_ctx_st')
-
 LIB_DEPENDS=	libsmdev.so:devel/libsmdev \
 		libsmraw.so:devel/libsmraw \
 		libuuid.so:misc/e2fsprogs-libuuid
 
-USES=		fuse libtool pathfix pkgconfig python:2.7 ssl
+USES=		fuse libtool pathfix pkgconfig python:2.7
 USE_LDCONFIG=	yes
 
 GNU_CONFIGURE=	yes
-CONFIGURE_ARGS=	--enable-python --with-libsmdev=${LOCALBASE} --with-libsmraw=${LOCALBASE} --with-libuuid=${LOCALBASE}
+CONFIGURE_ARGS=	--enable-python --with-libsmdev=${LOCALBASE} --with-libsmraw=${LOCALBASE} \
+		--with-libuuid=${LOCALBASE} --with-openssl=no
 INSTALL_TARGET=	install-strip
 
 OPTIONS_DEFINE=	NLS


More information about the svn-ports-all mailing list