svn commit: r499811 - head/security/gost-engine

Eugene Grosbein eugen at FreeBSD.org
Wed Apr 24 05:44:51 UTC 2019


Author: eugen
Date: Wed Apr 24 05:44:50 2019
New Revision: 499811
URL: https://svnweb.freebsd.org/changeset/ports/499811

Log:
  openssl/gost-engine: specify OPENSSL_ENGINES_DIR explicitly
  because the software does not always determine it automatically
  in FreeBSD environment.
  
  No PORTREVISION bump as it unbreaks build.

Modified:
  head/security/gost-engine/Makefile

Modified: head/security/gost-engine/Makefile
==============================================================================
--- head/security/gost-engine/Makefile	Wed Apr 24 05:38:19 2019	(r499810)
+++ head/security/gost-engine/Makefile	Wed Apr 24 05:44:50 2019	(r499811)
@@ -18,7 +18,10 @@ BROKEN_SSL_REASON_openssl=	needs features only availab
 
 USES=		cmake ssl
 
-CMAKE_ARGS+=	-DOPENSSL_ROOT_DIR=${OPENSSLBASE}
+ENGINESDIR?=	${PREFIX}/lib/engines-1.1
+
+CMAKE_ARGS+=	-DOPENSSL_ROOT_DIR=${OPENSSLBASE} \
+		-DOPENSSL_ENGINES_DIR=${ENGINESDIR}
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	gost-engine


More information about the svn-ports-all mailing list