Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Mar 2021 22:59:36 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r566921 - in branches/2021Q1/emulators: yuzu yuzu-qt5
Message-ID:  <202103012259.121MxaHG047566@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Mon Mar  1 22:59:35 2021
New Revision: 566921
URL: https://svnweb.freebsd.org/changeset/ports/566921

Log:
  MFH: r566352
  
  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:
  branches/2021Q1/emulators/yuzu-qt5/Makefile
  branches/2021Q1/emulators/yuzu/Makefile
Directory Properties:
  branches/2021Q1/   (props changed)

Modified: branches/2021Q1/emulators/yuzu-qt5/Makefile
==============================================================================
--- branches/2021Q1/emulators/yuzu-qt5/Makefile	Mon Mar  1 22:58:01 2021	(r566920)
+++ branches/2021Q1/emulators/yuzu-qt5/Makefile	Mon Mar  1 22:59:35 2021	(r566921)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-PORTREVISION=	1
+PORTREVISION=	2
 PKGNAMESUFFIX=	-qt5
 
 MASTERDIR=	${.CURDIR}/../yuzu

Modified: branches/2021Q1/emulators/yuzu/Makefile
==============================================================================
--- branches/2021Q1/emulators/yuzu/Makefile	Mon Mar  1 22:58:01 2021	(r566920)
+++ branches/2021Q1/emulators/yuzu/Makefile	Mon Mar  1 22:59:35 2021	(r566921)
@@ -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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103012259.121MxaHG047566>