From owner-svn-ports-head@FreeBSD.ORG Sun Sep 29 18:40:12 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C8FABA8A; Sun, 29 Sep 2013 18:40:12 +0000 (UTC) (envelope-from gerald@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B526D22A5; Sun, 29 Sep 2013 18:40:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8TIeCCn073968; Sun, 29 Sep 2013 18:40:12 GMT (envelope-from gerald@svn.freebsd.org) Received: (from gerald@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8TIeB6G073963; Sun, 29 Sep 2013 18:40:11 GMT (envelope-from gerald@svn.freebsd.org) Message-Id: <201309291840.r8TIeB6G073963@svn.freebsd.org> From: Gerald Pfeifer Date: Sun, 29 Sep 2013 18:40:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r328724 - in head/emulators: wine-devel wine-gecko-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-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Sep 2013 18:40:13 -0000 Author: gerald Date: Sun Sep 29 18:40:11 2013 New Revision: 328724 URL: http://svnweb.freebsd.org/changeset/ports/328724 Log: Update wine-gecko to version 2.24, based on Firefox 24. [1] Update wine-devel to Wine 1.7.3. This includes the following changes: - New version of the Gecko engine based on Firefox 24. - Preparation work for the Direct3D command stream. - Various bug fixes. Approved by: dbn (maintainer, pre-approved) Modified: head/emulators/wine-devel/Makefile head/emulators/wine-devel/distinfo head/emulators/wine-devel/pkg-plist head/emulators/wine-gecko-devel/Makefile head/emulators/wine-gecko-devel/distinfo Modified: head/emulators/wine-devel/Makefile ============================================================================== --- head/emulators/wine-devel/Makefile Sun Sep 29 18:19:03 2013 (r328723) +++ head/emulators/wine-devel/Makefile Sun Sep 29 18:40:11 2013 (r328724) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine -DISTVERSION= 1.7.2 +DISTVERSION= 1.7.3 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ @@ -125,7 +125,7 @@ RUN_DEPENDS+= p5-XML-LibXML>0:${PORTSDIR .endif .if ${PORT_OPTIONS:MGECKO} -RUN_DEPENDS+= ${DATADIR}/gecko/wine_gecko-2.21-x86.msi:${PORTSDIR}/emulators/wine-gecko-devel +RUN_DEPENDS+= ${DATADIR}/gecko/wine_gecko-2.24-x86.msi:${PORTSDIR}/emulators/wine-gecko-devel .endif .if ${PORT_OPTIONS:MMONO} Modified: head/emulators/wine-devel/distinfo ============================================================================== --- head/emulators/wine-devel/distinfo Sun Sep 29 18:19:03 2013 (r328723) +++ head/emulators/wine-devel/distinfo Sun Sep 29 18:40:11 2013 (r328724) @@ -1,2 +1,2 @@ -SHA256 (wine-1.7.2.tar.bz2) = 0bfc4276c93de1fdd5989f91807c7362b11995efdf581d60601fec789665b7f1 -SIZE (wine-1.7.2.tar.bz2) = 21336327 +SHA256 (wine-1.7.3.tar.bz2) = c66c93c2ffec8d1d9922fbaa226b169d62deb77fcbfd0fbd7379b77dbd97d47f +SIZE (wine-1.7.3.tar.bz2) = 21489049 Modified: head/emulators/wine-devel/pkg-plist ============================================================================== --- head/emulators/wine-devel/pkg-plist Sun Sep 29 18:19:03 2013 (r328723) +++ head/emulators/wine-devel/pkg-plist Sun Sep 29 18:40:11 2013 (r328724) @@ -162,6 +162,8 @@ include/wine/windows/d3d10misc.h include/wine/windows/d3d10shader.h include/wine/windows/d3d11.h include/wine/windows/d3d11.idl +include/wine/windows/d3d11sdklayers.h +include/wine/windows/d3d11sdklayers.idl include/wine/windows/d3d11shader.h include/wine/windows/d3d8.h include/wine/windows/d3d8caps.h @@ -690,6 +692,7 @@ include/wine/windows/winresrc.h include/wine/windows/winsafer.h include/wine/windows/winscard.h include/wine/windows/winsmcrd.h +include/wine/windows/winsnmp.h include/wine/windows/winsock.h include/wine/windows/winsock2.h include/wine/windows/winspool.h @@ -1665,6 +1668,7 @@ lib/wine/libwldap32.def lib/wine/libwnaspi32.def lib/wine/libwow32.def lib/wine/libws2_32.def +lib/wine/libwsnmp32.def lib/wine/libwsock32.def lib/wine/libwtsapi32.def lib/wine/libxinput.def Modified: head/emulators/wine-gecko-devel/Makefile ============================================================================== --- head/emulators/wine-gecko-devel/Makefile Sun Sep 29 18:19:03 2013 (r328723) +++ head/emulators/wine-gecko-devel/Makefile Sun Sep 29 18:40:11 2013 (r328724) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wine-gecko -DISTVERSION= 2.21 +DISTVERSION= 2.24 CATEGORIES= emulators MASTER_SITES= SF/wine/Wine%20Gecko/${DISTVERSION} DISTNAME= wine_gecko-${DISTVERSION}-x86 Modified: head/emulators/wine-gecko-devel/distinfo ============================================================================== --- head/emulators/wine-gecko-devel/distinfo Sun Sep 29 18:19:03 2013 (r328723) +++ head/emulators/wine-gecko-devel/distinfo Sun Sep 29 18:40:11 2013 (r328724) @@ -1,2 +1,2 @@ -SHA256 (wine_gecko-2.21-x86.msi) = f01fafa6d7aab995c38add77315c4cbc2f32f52d5d6a9350056f42b62d631fd8 -SIZE (wine_gecko-2.21-x86.msi) = 20871680 +SHA256 (wine_gecko-2.24-x86.msi) = 6e38acae87ea66e2c1e8f2f0afe88f89eed3e6e0b431cd3da38dea814b71202c +SIZE (wine_gecko-2.24-x86.msi) = 22373888