svn commit: r531714 - in branches/2020Q2/emulators: yuzu yuzu-qt5

Jan Beich jbeich at FreeBSD.org
Tue Apr 14 19:15:59 UTC 2020


Author: jbeich
Date: Tue Apr 14 19:15:58 2020
New Revision: 531714
URL: https://svnweb.freebsd.org/changeset/ports/531714

Log:
  MFH: r531647
  
  emulators/yuzu: advertise Vulkan support
  
  Vulkan lazy bindings are always enabled, built against bundled headers
  
  Approved by:	ports-secteam (joneum)

Modified:
  branches/2020Q2/emulators/yuzu-qt5/Makefile
  branches/2020Q2/emulators/yuzu/Makefile
Directory Properties:
  branches/2020Q2/   (props changed)

Modified: branches/2020Q2/emulators/yuzu-qt5/Makefile
==============================================================================
--- branches/2020Q2/emulators/yuzu-qt5/Makefile	Tue Apr 14 19:04:21 2020	(r531713)
+++ branches/2020Q2/emulators/yuzu-qt5/Makefile	Tue Apr 14 19:15:58 2020	(r531714)
@@ -1,6 +1,6 @@
 # $FreeBSD$
 
-PORTREVISION=	0
+PORTREVISION=	1
 PKGNAMESUFFIX=	-qt5
 
 MASTERDIR=	${.CURDIR}/../yuzu

Modified: branches/2020Q2/emulators/yuzu/Makefile
==============================================================================
--- branches/2020Q2/emulators/yuzu/Makefile	Tue Apr 14 19:04:21 2020	(r531713)
+++ branches/2020Q2/emulators/yuzu/Makefile	Tue Apr 14 19:15:58 2020	(r531714)
@@ -2,7 +2,7 @@
 
 PORTNAME=	yuzu
 PORTVERSION=	s20200330
-PORTREVISION?=	0
+PORTREVISION?=	1
 CATEGORIES=	emulators
 
 MAINTAINER=	jbeich at FreeBSD.org
@@ -56,8 +56,8 @@ CXXFLAGS+=	-Wno-narrowing # https://github.com/yuzu-em
 LDFLAGS+=	-Wl,--as-needed # Qt5Network
 TEST_TARGET=	test
 
-OPTIONS_DEFINE=	ALSA PULSEAUDIO JACK SNDIO
-OPTIONS_DEFAULT=ALSA PULSEAUDIO JACK SNDIO
+OPTIONS_DEFINE=	ALSA PULSEAUDIO JACK SNDIO VULKAN
+OPTIONS_DEFAULT=ALSA PULSEAUDIO JACK SNDIO VULKAN
 OPTIONS_MULTI=	GUI
 OPTIONS_MULTI_GUI=	QT5 SDL
 OPTIONS_SLAVE?=	SDL
@@ -87,6 +87,9 @@ QT5_PLIST_FILES=bin/${PORTNAME} \
 		share/applications/${PORTNAME}.desktop \
 		share/icons/hicolor/scalable/apps/${PORTNAME}.svg \
 		share/mime/packages/${PORTNAME}.xml
+
+VULKAN_DESC=		Vulkan renderer
+VULKAN_RUN_DEPENDS=	${LOCALBASE}/lib/libvulkan.so:graphics/vulkan-loader
 
 post-patch:
 	@${REINPLACE_CMD} -e '/check_submodules_present()/d' \


More information about the svn-ports-all mailing list