git: 67eda602caa4 - main - emulators/wine: Merge the VULKAN option into VKD3D

Gerald Pfeifer gerald at FreeBSD.org
Sat Oct 2 07:02:48 UTC 2021


The branch main has been updated by gerald:

URL: https://cgit.FreeBSD.org/ports/commit/?id=67eda602caa464c84694459e4d09503519264b9f

commit 67eda602caa464c84694459e4d09503519264b9f
Author:     Gerald Pfeifer <gerald at FreeBSD.org>
AuthorDate: 2021-10-02 07:02:18 +0000
Commit:     Gerald Pfeifer <gerald at FreeBSD.org>
CommitDate: 2021-10-02 07:02:18 +0000

    emulators/wine: Merge the VULKAN option into VKD3D
    
    This back ports 3d5484b928571899d48e10ffa0e539042b63cedc and
    5a1f2db45736cb70dc556090ba6c929c51d1eb28 from emulators/wine-devel:
    
    When Wine gained support for the Vulkan API and D3D support via
    Vulkan we added two options (both off by default): VULKAN and
    VKD3D.
    
    Simplify things, in particular also from a user perspective, by only
    keeping the VKD3D option which now subsumes the former VULKAN option
    (and hence Vulkan API support).
    
    No change in defaults - yet.
    
    On the way adjust CONFIGURE_ARGS to only feature on option per line,
    which was mostly the case already anyway.
    
    PR:             258375
---
 emulators/wine/Makefile | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/emulators/wine/Makefile b/emulators/wine/Makefile
index 8eab5bb04326..48b46f86a617 100644
--- a/emulators/wine/Makefile
+++ b/emulators/wine/Makefile
@@ -33,9 +33,13 @@ GNU_CONFIGURE=	yes
 CONFIGURE_ARGS+=--verbose \
 		--disable-kerberos \
 		--disable-tests \
-		--without-alsa --without-capi --without-dbus \
+		--without-alsa \
+		--without-capi \
+		--without-dbus \
 		--without-gettext --without-gettextpo \
-		--without-gphoto --without-gsm --without-gstreamer \
+		--without-gphoto \
+		--without-gsm \
+		--without-gstreamer \
 		--without-inotify \
 		--without-krb5 \
 		--without-mingw \
@@ -60,15 +64,14 @@ SUB_FILES=	pkg-message
 
 PORTDATA=	wine.inf
 
-OPTIONS_DEFINE=	CUPS DOCS DOSBOX GNUTLS LDAP LIBXSLT MPG123 OPENAL SDL V4L VKD3D VULKAN WINEMAKER X11 GECKO MONO
+OPTIONS_DEFINE=	CUPS DOCS DOSBOX GNUTLS LDAP LIBXSLT MPG123 OPENAL SDL V4L VKD3D WINEMAKER X11 GECKO MONO
 OPTIONS_DEFAULT=GNUTLS X11
 OPTIONS_SUB=	yes
 
 DOSBOX_DESC=	Use DOSBox to run MS-DOS programs
 LIBXSLT_DESC=	Use libxslt (only used by msxml3.dll)
 SDL_DESC=	Use SDL for gamepad support (XInput only)
-VKD3D_DESC=	Direct3D 12 support via Vulkan
-VULKAN_DESC=	Vulkan API support
+VKD3D_DESC=	Vulkan and Direct3D 12 support
 WINEMAKER_DESC=	Fully support winemaker (requires Perl)
 GECKO_DESC=	Bundle Gecko MSI package for Wine
 MONO_DESC=	Bundle Mono MSI package for Wine
@@ -108,10 +111,8 @@ V4L_BUILD_DEPENDS=	${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat
 V4L_LIB_DEPENDS=	libv4l2.so:multimedia/libv4l
 
 VKD3D_CONFIGURE_WITH=	vkd3d
-VKD3D_LIB_DEPENDS=	libvkd3d.so:graphics/vkd3d
-
-VULKAN_CONFIGURE_WITH=	vulkan
-VULKAN_LIB_DEPENDS=	libvulkan.so:graphics/vulkan-loader
+VKD3D_LIB_DEPENDS=	libvulkan.so:graphics/vulkan-loader \
+			libvkd3d.so:graphics/vkd3d
 
 WINEMAKER_RUN_DEPENDS=	p5-XML-LibXML>0:textproc/p5-XML-LibXML
 


More information about the dev-commits-ports-all mailing list