From owner-svn-ports-all@freebsd.org Sat May 26 00:49:41 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 33126EF914B; Sat, 26 May 2018 00:49:41 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D440F7B750; Sat, 26 May 2018 00:49:40 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A8879712; Sat, 26 May 2018 00:49:40 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w4Q0nex8099330; Sat, 26 May 2018 00:49:40 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w4Q0neYM099327; Sat, 26 May 2018 00:49:40 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201805260049.w4Q0neYM099327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sat, 26 May 2018 00:49:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r470875 - head/emulators/wine-devel X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/emulators/wine-devel X-SVN-Commit-Revision: 470875 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 May 2018 00:49:41 -0000 Author: gerald Date: Sat May 26 00:49:39 2018 New Revision: 470875 URL: https://svnweb.freebsd.org/changeset/ports/470875 Log: Update to Wine 3.9. This includes the following changes: - OpenGL core contexts enabled by default in Direct 3D. - Beginnings of Direct 3D 12 implementation using vkd3d. (This is inactive for now due to a non-existant dependency, and hidden behind a new option VKD3D which is always off.) - More support for the Task Scheduler. - Some more Task Dialog support. - Better arrow support in GdiPlus. - Various bug fixes. ext-ms-win-uxtheme-themes-l1-1-0.dll and feclient.dll which in the past were available only via the Wine Staging patchset are now part of mainstream Wine. Modified: head/emulators/wine-devel/Makefile head/emulators/wine-devel/distinfo head/emulators/wine-devel/pkg-plist Modified: head/emulators/wine-devel/Makefile ============================================================================== --- head/emulators/wine-devel/Makefile Fri May 25 23:05:22 2018 (r470874) +++ head/emulators/wine-devel/Makefile Sat May 26 00:49:39 2018 (r470875) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -DISTVERSION= 3.8 +DISTVERSION= 3.9 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= http://mirrors.ibiblio.org/wine/source/3.x/ \ @@ -56,7 +56,7 @@ SUB_FILES= pkg-message PORTDATA= l_intl.nls wine.inf -OPTIONS_DEFINE= CUPS DOCS DOSBOX GNUTLS HAL LDAP LIBXSLT MPG123 OPENAL STAGING V4L WINEMAKER X11 GECKO MONO +OPTIONS_DEFINE= CUPS DOCS DOSBOX GNUTLS HAL LDAP LIBXSLT MPG123 OPENAL STAGING V4L VKD3D WINEMAKER X11 GECKO MONO OPTIONS_DEFAULT=GNUTLS X11 OPTIONS_SUB= yes Modified: head/emulators/wine-devel/distinfo ============================================================================== --- head/emulators/wine-devel/distinfo Fri May 25 23:05:22 2018 (r470874) +++ head/emulators/wine-devel/distinfo Sat May 26 00:49:39 2018 (r470875) @@ -1,5 +1,3 @@ -TIMESTAMP = 1526178184 -SHA256 (wine-3.8.tar.xz) = 02b00c6c948b3bab717e1b1e2075a5406b14d138bd2e01fdb1268a93d1c20d51 -SIZE (wine-3.8.tar.xz) = 20473392 -SHA256 (v3.8.tar.gz) = fd40c24e00b3da4498f78885a5d3c4a9699790c1de78f6e43ff151432824f2ad -SIZE (v3.8.tar.gz) = 9957202 +TIMESTAMP = 1527290226 +SHA256 (wine-3.9.tar.xz) = ccadc281966d5a94f1161dec22d29bf7bd6506b371b26f18f652d374e986b735 +SIZE (wine-3.9.tar.xz) = 20508952 Modified: head/emulators/wine-devel/pkg-plist ============================================================================== --- head/emulators/wine-devel/pkg-plist Fri May 25 23:05:22 2018 (r470874) +++ head/emulators/wine-devel/pkg-plist Sat May 26 00:49:39 2018 (r470875) @@ -1244,7 +1244,7 @@ lib/wine/d3d10.dll.so lib/wine/d3d10_1.dll.so lib/wine/d3d10core.dll.so lib/wine/d3d11.dll.so -lib/wine/d3d12.dll.so +%%VKD3D%%lib/wine/d3d12.dll.so lib/wine/d3d8.dll.so lib/wine/d3d9.dll.so lib/wine/d3dcompiler_33.dll.so @@ -1389,7 +1389,7 @@ lib/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll lib/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll.so lib/wine/ext-ms-win-security-credui-l1-1-0.dll.so lib/wine/ext-ms-win-security-cryptui-l1-1-0.dll.so -%%STAGING%%lib/wine/ext-ms-win-uxtheme-themes-l1-1-0.dll.so +lib/wine/ext-ms-win-uxtheme-themes-l1-1-0.dll.so %%STAGING%%lib/wine/ext-ms-win-xaml-pal-l1-1-0.dll.so lib/wine/extrac32.exe.so lib/wine/fakedlls/acledit.dll @@ -1670,7 +1670,7 @@ lib/wine/fakedlls/d3d10.dll lib/wine/fakedlls/d3d10_1.dll lib/wine/fakedlls/d3d10core.dll lib/wine/fakedlls/d3d11.dll -lib/wine/fakedlls/d3d12.dll +%%VKD3D%%lib/wine/fakedlls/d3d12.dll lib/wine/fakedlls/d3d8.dll lib/wine/fakedlls/d3d9.dll lib/wine/fakedlls/d3dcompiler_33.dll @@ -1815,11 +1815,11 @@ lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-syscolors-l lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll lib/wine/fakedlls/ext-ms-win-security-credui-l1-1-0.dll lib/wine/fakedlls/ext-ms-win-security-cryptui-l1-1-0.dll -%%STAGING%%lib/wine/fakedlls/ext-ms-win-uxtheme-themes-l1-1-0.dll +lib/wine/fakedlls/ext-ms-win-uxtheme-themes-l1-1-0.dll %%STAGING%%lib/wine/fakedlls/ext-ms-win-xaml-pal-l1-1-0.dll lib/wine/fakedlls/extrac32.exe lib/wine/fakedlls/faultrep.dll -%%STAGING%%lib/wine/fakedlls/feclient.dll +lib/wine/fakedlls/feclient.dll lib/wine/fakedlls/findstr.exe lib/wine/fakedlls/fltlib.dll lib/wine/fakedlls/fltmgr.sys @@ -2301,7 +2301,7 @@ lib/wine/fakedlls/xolehlp.dll lib/wine/fakedlls/xpsprint.dll lib/wine/fakedlls/xpssvcs.dll lib/wine/faultrep.dll.so -%%STAGING%%lib/wine/feclient.dll.so +lib/wine/feclient.dll.so lib/wine/findstr.exe.so lib/wine/fltlib.dll.so lib/wine/fltmgr.sys.so @@ -2393,7 +2393,7 @@ lib/wine/libd3d10.def lib/wine/libd3d10_1.def lib/wine/libd3d10core.def lib/wine/libd3d11.def -lib/wine/libd3d12.def +%%VKD3D%%lib/wine/libd3d12.def lib/wine/libd3d8.def lib/wine/libd3d9.def lib/wine/libd3dcompiler.def