From owner-svn-ports-all@FreeBSD.ORG Wed Dec 24 10:00:12 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA49DF72; Wed, 24 Dec 2014 10:00:12 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D33F665F4; Wed, 24 Dec 2014 10:00:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBOA0CLZ027960; Wed, 24 Dec 2014 10:00:12 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBOA0BsB027957; Wed, 24 Dec 2014 10:00:11 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201412241000.sBOA0BsB027957@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Wed, 24 Dec 2014 10:00:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r375427 - head/emulators/wine-devel X-SVN-Group: ports-head 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.18-1 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: Wed, 24 Dec 2014 10:00:12 -0000 Author: gerald Date: Wed Dec 24 10:00:11 2014 New Revision: 375427 URL: https://svnweb.freebsd.org/changeset/ports/375427 QAT: https://qat.redports.org/buildarchive/r375427/ Log: Update to Wine 1.7.33. This includes the following changes: - Support for copy/paste commands in MSHTML. - Some more font support in DirectWrite. - Better handling for loss of focus in Direct3D windows. - Several more API Sets DLLs. - Various bug fixes. Configure with --without-gettextpo and --without-osmesa. [1] Break out items in those lines of CONFIGURE_ARGS touched anyway, one item per line, to make this part easier to compare with emulators/wine. Add tools/make_requests to SHEBANG_FILES. [1] No longer use XORG=xpm. This has been removed with upstream commit 18e4b5e293cdbb83197fd1427cdd4e42314c831b eons ago. [1] Configure --without-pulse in the COMPHOLIO case (which is the one adding support for Pulseaudio to begin with). [1] PR: 195765 [1] Submitted by: Andriy Voskoboinyk [1] 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 Wed Dec 24 09:57:47 2014 (r375426) +++ head/emulators/wine-devel/Makefile Wed Dec 24 10:00:11 2014 (r375427) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= wine -DISTVERSION= 1.7.32 -PORTREVISION= 1 +DISTVERSION= 1.7.33 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ @@ -29,8 +28,13 @@ LDFLAGS+= -L${LOCALBASE}/lib GNU_CONFIGURE= yes CONFIGURE_ARGS+=--verbose --disable-tests \ --without-alsa --without-capi --without-dbus \ + --without-gettextpo \ --without-gphoto --without-gsm --without-gstreamer \ - --without-opencl --with-oss --without-sane --without-tiff \ + --without-opencl \ + --without-osmesa \ + --with-oss \ + --without-sane \ + --without-tiff \ --with-xcomposite --without-xinerama CONFIGURE_ENV= FLEX="${LOCALBASE}/bin/flex" WINELIBDIR?= ${PREFIX}/lib @@ -39,7 +43,8 @@ USE_LDCONFIG= ${WINELIBDIR} ${WINELIBDIR .endif ONLY_FOR_ARCHS= i386 USES= bison compiler:c11 desktop-file-utils gmake shebangfix tar:bzip2 -SHEBANG_FILES= tools/winemaker tools/winedump/function_grep.pl +SHEBANG_FILES= tools/make_requests tools/winemaker \ + tools/winedump/function_grep.pl SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message @@ -88,7 +93,7 @@ V4L_LIB_DEPENDS= libv4l1.so:${PORTSDIR}/ WINEMAKER_RUN_DEPENDS= p5-XML-LibXML>0:${PORTSDIR}/textproc/p5-XML-LibXML X11_CONFIGURE_WITH= x cms fontconfig glu jpeg opengl png xinput2 xrandr freetype -X11_USE= GL=glu XORG=xcomposite,xcursor,xi,xpm,xrandr,xrender +X11_USE= GL=glu XORG=xcomposite,xcursor,xi,xrandr,xrender X11_LIB_DEPENDS= libfontconfig.so:${PORTSDIR}/x11-fonts/fontconfig \ libfreetype.so:${PORTSDIR}/print/freetype2 \ libjpeg.so:${PORTSDIR}/graphics/jpeg \ @@ -103,10 +108,13 @@ PORTDATA= l_intl.nls wine.inf MASTER_SITES+= https://github.com/compholio/wine-compholio-daily/archive/:cho COMP_DIST= v${DISTVERSION}.tar.gz DISTFILES+= ${COMP_DIST}:cho -USE_AUTOTOOLS= autoconf + BUILD_DEPENDS+= bash:${PORTSDIR}/shells/bash \ git:${PORTSDIR}/devel/git +CONFIGURE_ARGS+=--without-pulse +USE_AUTOTOOLS= autoconf + pre-configure: cd ${WRKSRC} && ${TAR} xf ${DISTDIR}/${COMP_DIST} --strip-components 1 cd ${WRKSRC} && ${MAKE_CMD} -C ./patches DESTDIR=${WRKSRC} install Modified: head/emulators/wine-devel/distinfo ============================================================================== --- head/emulators/wine-devel/distinfo Wed Dec 24 09:57:47 2014 (r375426) +++ head/emulators/wine-devel/distinfo Wed Dec 24 10:00:11 2014 (r375427) @@ -1,4 +1,4 @@ -SHA256 (wine-1.7.32.tar.bz2) = 66a9c26089ad3b300aac1ac52e9515c69a7e6f26aff3250a7f1401e3f14de4db -SIZE (wine-1.7.32.tar.bz2) = 21893431 -SHA256 (v1.7.32.tar.gz) = d5e8338ddd69edb173ad52cd71de74eee9ca0de84483bb20b5b1a436bc880a0d -SIZE (v1.7.32.tar.gz) = 8480766 +SHA256 (wine-1.7.33.tar.bz2) = e3519d6fa2c0bb91e58da38f14f02607cf366a0154ff1effe528966106d49275 +SIZE (wine-1.7.33.tar.bz2) = 21908969 +SHA256 (v1.7.33.tar.gz) = 30b7ecee549514ecd186689ae8eac15ed37507755025c8272d31e8fd4808b3f2 +SIZE (v1.7.33.tar.gz) = 8759402 Modified: head/emulators/wine-devel/pkg-plist ============================================================================== --- head/emulators/wine-devel/pkg-plist Wed Dec 24 09:57:47 2014 (r375426) +++ head/emulators/wine-devel/pkg-plist Wed Dec 24 10:00:11 2014 (r375427) @@ -330,6 +330,8 @@ include/wine/windows/highlevelmonitorcon include/wine/windows/hlguids.h include/wine/windows/hlink.h include/wine/windows/hlink.idl +include/wine/windows/hstring.h +include/wine/windows/hstring.idl include/wine/windows/htiface.h include/wine/windows/htiface.idl include/wine/windows/htiframe.h @@ -411,6 +413,7 @@ include/wine/windows/mediaobj.h include/wine/windows/mediaobj.idl include/wine/windows/metahost.h include/wine/windows/metahost.idl +%%COMPHOLIO%%include/wine/windows/mferror.h include/wine/windows/midles.h include/wine/windows/mimeinfo.h include/wine/windows/mimeinfo.idl @@ -562,6 +565,7 @@ include/wine/windows/richole.idl include/wine/windows/rmxfguid.h include/wine/windows/rmxftmpl.h include/wine/windows/rmxftmpl.x +include/wine/windows/roapi.h include/wine/windows/row.idl include/wine/windows/rowchg.idl include/wine/windows/rowpos.idl @@ -728,6 +732,7 @@ include/wine/windows/winsnmp.h include/wine/windows/winsock.h include/wine/windows/winsock2.h include/wine/windows/winspool.h +include/wine/windows/winstring.h include/wine/windows/winsvc.h include/wine/windows/winsxs.h include/wine/windows/winsxs.idl @@ -807,9 +812,11 @@ lib/wine/api-ms-win-core-console-l1-1-0. %%COMPHOLIO%%lib/wine/api-ms-win-core-datetime-l1-1-1.dll.so lib/wine/api-ms-win-core-debug-l1-1-1.dll.so lib/wine/api-ms-win-core-errorhandling-l1-1-1.dll.so +lib/wine/api-ms-win-core-errorhandling-l1-1-2.dll.so %%COMPHOLIO%%lib/wine/api-ms-win-core-fibers-l1-1-0.dll.so %%COMPHOLIO%%lib/wine/api-ms-win-core-fibers-l1-1-1.dll.so lib/wine/api-ms-win-core-file-l1-2-0.dll.so +lib/wine/api-ms-win-core-file-l2-1-1.dll.so %%COMPHOLIO%%lib/wine/api-ms-win-core-file-l2-1-0.dll.so lib/wine/api-ms-win-core-handle-l1-1-0.dll.so lib/wine/api-ms-win-core-heap-l1-2-0.dll.so @@ -827,6 +834,7 @@ lib/wine/api-ms-win-core-namedpipe-l1-2- lib/wine/api-ms-win-core-processenvironment-l1-2-0.dll.so lib/wine/api-ms-win-core-processthreads-l1-1-0.dll.so lib/wine/api-ms-win-core-processthreads-l1-1-1.dll.so +lib/wine/api-ms-win-core-processthreads-l1-1-2.dll.so lib/wine/api-ms-win-core-profile-l1-1-0.dll.so lib/wine/api-ms-win-core-psapi-l1-1-0.dll.so lib/wine/api-ms-win-core-registry-l1-1-0.dll.so @@ -835,6 +843,7 @@ lib/wine/api-ms-win-core-shlwapi-legacy- lib/wine/api-ms-win-core-string-l1-1-0.dll.so lib/wine/api-ms-win-core-synch-l1-2-0.dll.so lib/wine/api-ms-win-core-sysinfo-l1-2-0.dll.so +lib/wine/api-ms-win-core-sysinfo-l1-2-1.dll.so lib/wine/api-ms-win-core-threadpool-legacy-l1-1-0.dll.so lib/wine/api-ms-win-core-timezone-l1-1-0.dll.so lib/wine/api-ms-win-core-url-l1-1-0.dll.so @@ -887,6 +896,7 @@ lib/wine/cfgmgr32.dll.so lib/wine/clock.exe.so lib/wine/clusapi.dll.so lib/wine/cmd.exe.so +lib/wine/combase.dll.so lib/wine/comcat.dll.so lib/wine/comctl32.dll.so lib/wine/comdlg32.dll.so @@ -1026,9 +1036,11 @@ lib/wine/fakedlls/api-ms-win-core-consol %%COMPHOLIO%%lib/wine/fakedlls/api-ms-win-core-datetime-l1-1-1.dll lib/wine/fakedlls/api-ms-win-core-debug-l1-1-1.dll lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-1.dll +lib/wine/fakedlls/api-ms-win-core-errorhandling-l1-1-2.dll %%COMPHOLIO%%lib/wine/fakedlls/api-ms-win-core-fibers-l1-1-0.dll %%COMPHOLIO%%lib/wine/fakedlls/api-ms-win-core-fibers-l1-1-1.dll lib/wine/fakedlls/api-ms-win-core-file-l1-2-0.dll +lib/wine/fakedlls/api-ms-win-core-file-l2-1-1.dll %%COMPHOLIO%%lib/wine/fakedlls/api-ms-win-core-file-l2-1-0.dll lib/wine/fakedlls/api-ms-win-core-handle-l1-1-0.dll lib/wine/fakedlls/api-ms-win-core-heap-l1-2-0.dll @@ -1046,6 +1058,7 @@ lib/wine/fakedlls/api-ms-win-core-namedp lib/wine/fakedlls/api-ms-win-core-processenvironment-l1-2-0.dll lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-0.dll lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-1.dll +lib/wine/fakedlls/api-ms-win-core-processthreads-l1-1-2.dll lib/wine/fakedlls/api-ms-win-core-profile-l1-1-0.dll lib/wine/fakedlls/api-ms-win-core-psapi-l1-1-0.dll lib/wine/fakedlls/api-ms-win-core-registry-l1-1-0.dll @@ -1054,6 +1067,7 @@ lib/wine/fakedlls/api-ms-win-core-shlwap lib/wine/fakedlls/api-ms-win-core-string-l1-1-0.dll lib/wine/fakedlls/api-ms-win-core-synch-l1-2-0.dll lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-0.dll +lib/wine/fakedlls/api-ms-win-core-sysinfo-l1-2-1.dll lib/wine/fakedlls/api-ms-win-core-threadpool-legacy-l1-1-0.dll lib/wine/fakedlls/api-ms-win-core-timezone-l1-1-0.dll lib/wine/fakedlls/api-ms-win-core-url-l1-1-0.dll @@ -1106,6 +1120,7 @@ lib/wine/fakedlls/cfgmgr32.dll lib/wine/fakedlls/clock.exe lib/wine/fakedlls/clusapi.dll lib/wine/fakedlls/cmd.exe +lib/wine/fakedlls/combase.dll lib/wine/fakedlls/comcat.dll lib/wine/fakedlls/comctl32.dll lib/wine/fakedlls/comdlg32.dll @@ -1296,6 +1311,8 @@ lib/wine/fakedlls/mcicda.dll lib/wine/fakedlls/mciqtz32.dll lib/wine/fakedlls/mciseq.dll lib/wine/fakedlls/mciwave.dll +lib/wine/fakedlls/mfplat.dll +lib/wine/fakedlls/mfreadwrite.dll lib/wine/fakedlls/mgmtapi.dll lib/wine/fakedlls/midimap.dll lib/wine/fakedlls/mlang.dll @@ -1347,6 +1364,7 @@ lib/wine/fakedlls/msvcm90.dll lib/wine/fakedlls/msvcp100.dll lib/wine/fakedlls/msvcp110.dll lib/wine/fakedlls/msvcp120.dll +lib/wine/fakedlls/msvcp120_app.dll lib/wine/fakedlls/msvcp60.dll lib/wine/fakedlls/msvcp70.dll lib/wine/fakedlls/msvcp71.dll @@ -1355,6 +1373,7 @@ lib/wine/fakedlls/msvcp90.dll lib/wine/fakedlls/msvcr100.dll lib/wine/fakedlls/msvcr110.dll lib/wine/fakedlls/msvcr120.dll +lib/wine/fakedlls/msvcr120_app.dll lib/wine/fakedlls/msvcr70.dll lib/wine/fakedlls/msvcr71.dll lib/wine/fakedlls/msvcr80.dll @@ -1559,6 +1578,7 @@ lib/wine/fakedlls/winebrowser.exe lib/wine/fakedlls/winecfg.exe lib/wine/fakedlls/wineconsole.exe lib/wine/fakedlls/wined3d.dll +%%COMPHOLIO%%lib/wine/fakedlls/wined3d-csmt.dll lib/wine/fakedlls/winedbg.exe lib/wine/fakedlls/winedevice.exe lib/wine/fakedlls/winefile.exe @@ -1866,6 +1886,8 @@ lib/wine/mcicda.dll.so lib/wine/mciqtz32.dll.so lib/wine/mciseq.dll.so lib/wine/mciwave.dll.so +lib/wine/mfplat.dll.so +lib/wine/mfreadwrite.dll.so lib/wine/mgmtapi.dll.so lib/wine/midimap.dll.so lib/wine/mlang.dll.so @@ -1917,6 +1939,7 @@ lib/wine/msvcm90.dll.so lib/wine/msvcp100.dll.so lib/wine/msvcp110.dll.so lib/wine/msvcp120.dll.so +lib/wine/msvcp120_app.dll.so lib/wine/msvcp60.dll.so lib/wine/msvcp70.dll.so lib/wine/msvcp71.dll.so @@ -1925,6 +1948,7 @@ lib/wine/msvcp90.dll.so lib/wine/msvcr100.dll.so lib/wine/msvcr110.dll.so lib/wine/msvcr120.dll.so +lib/wine/msvcr120_app.dll.so lib/wine/msvcr70.dll.so lib/wine/msvcr71.dll.so lib/wine/msvcr80.dll.so @@ -2129,6 +2153,7 @@ lib/wine/winebrowser.exe.so lib/wine/winecfg.exe.so lib/wine/wineconsole.exe.so lib/wine/wined3d.dll.so +%%COMPHOLIO%%lib/wine/wined3d-csmt.dll.so lib/wine/winedbg.exe.so lib/wine/winedevice.exe.so lib/wine/winefile.exe.so