svn commit: r566352 - in head/emulators: yuzu yuzu-qt5

Jan Beich jbeich at FreeBSD.org
Tue Feb 23 00:49:46 UTC 2021


Author: jbeich
Date: Tue Feb 23 00:49:45 2021
New Revision: 566352
URL: https://svnweb.freebsd.org/changeset/ports/566352

Log:
  emulators/yuzu: prefer OpenSSL over GnuTLS after r560825
  
  -- Found NETTLE: /usr/local/lib/libnettle.so
  -- Found GnuTLS: /usr/local/lib/libgnutls.so
  -- Found OpenSSL: /usr/lib/libcrypto.so (found version "1.1.1h")
  [...]
  Error: /usr/local/bin/yuzu is linked to /usr/local/lib/libgnutls.so.30 from security/gnutls but it is not declared as a dependency
  Warning: you need LIB_DEPENDS+=libgnutls.so:security/gnutls
  Error: /usr/local/bin/yuzu is linked to /usr/local/lib/libnettle.so.8 from security/nettle but it is not declared as a dependency
  Warning: you need LIB_DEPENDS+=libnettle.so:security/nettle

Modified:
  head/emulators/yuzu-qt5/Makefile   (contents, props changed)
  head/emulators/yuzu/Makefile   (contents, props changed)

Modified: head/emulators/yuzu-qt5/Makefile
==============================================================================
--- head/emulators/yuzu-qt5/Makefile	Mon Feb 22 23:58:15 2021	(r566351)
+++ head/emulators/yuzu-qt5/Makefile	Tue Feb 23 00:49:45 2021	(r566352)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-PORTREVISION=	1
+PORTREVISION=	2
 PKGNAMESUFFIX=	-qt5
 
 MASTERDIR=	${.CURDIR}/../yuzu

Modified: head/emulators/yuzu/Makefile
==============================================================================
--- head/emulators/yuzu/Makefile	Mon Feb 22 23:58:15 2021	(r566351)
+++ head/emulators/yuzu/Makefile	Tue Feb 23 00:49:45 2021	(r566352)
@@ -2,7 +2,7 @@
 
 PORTNAME=	yuzu
 PORTVERSION=	s20201218
-PORTREVISION?=	1
+PORTREVISION?=	2
 CATEGORIES=	emulators
 
 PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
@@ -49,6 +49,7 @@ GH_TUPLE=	DarkLordZach:mbedtls:a280e60:mbedtls/externa
 
 USES=		cmake compiler:c++17-lang localbase:ldflags sdl ssl
 USE_SDL=	sdl2
+CMAKE_OFF=	ENABLE_GNUTLS ENABLE_MBEDTLS
 LDFLAGS+=	-Wl,--as-needed # Qt5Network
 TEST_TARGET=	test
 


More information about the svn-ports-all mailing list