From owner-svn-ports-head@freebsd.org Mon Nov 7 10:13:01 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A0764C32CD9; Mon, 7 Nov 2016 10:13:01 +0000 (UTC) (envelope-from matthew@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 mx1.freebsd.org (Postfix) with ESMTPS id 782F362D; Mon, 7 Nov 2016 10:13:01 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA7AD0f9070603; Mon, 7 Nov 2016 10:13:00 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA7AD0cG070597; Mon, 7 Nov 2016 10:13:00 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201611071013.uA7AD0cG070597@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 7 Nov 2016 10:13:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425599 - in head/emulators: . winetricks 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.23 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: Mon, 07 Nov 2016 10:13:01 -0000 Author: matthew Date: Mon Nov 7 10:12:59 2016 New Revision: 425599 URL: https://svnweb.freebsd.org/changeset/ports/425599 Log: Winetricks is an easy way to work around problems in Wine. It has a menu of supported games/apps for which it can do all the workarounds automatically. It also lets you install missing DLLs or tweak various Wine settings individually. WWW: https://wiki.winehq.org/Winetricks PR: 211293 Submitted by: Nikolai Lifanov Added: head/emulators/winetricks/ head/emulators/winetricks/Makefile (contents, props changed) head/emulators/winetricks/distinfo (contents, props changed) head/emulators/winetricks/pkg-descr (contents, props changed) head/emulators/winetricks/pkg-message (contents, props changed) Modified: head/emulators/Makefile Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Mon Nov 7 09:36:15 2016 (r425598) +++ head/emulators/Makefile Mon Nov 7 10:12:59 2016 (r425599) @@ -171,6 +171,7 @@ SUBDIR += wine-mono SUBDIR += wine-mono-devel SUBDIR += wine-staging + SUBDIR += winetricks SUBDIR += wxmupen64plus SUBDIR += x48 SUBDIR += x49gp Added: head/emulators/winetricks/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/winetricks/Makefile Mon Nov 7 10:12:59 2016 (r425599) @@ -0,0 +1,30 @@ +# Created by: Nikolai Lifanov +# $FreeBSD$ + +PORTNAME= winetricks +PORTVERSION= 20161012 +CATEGORIES= emulators + +MAINTAINER= lifanov@mail.lifanov.com +COMMENT= Easy way to work around problems in Wine + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/src/COPYING + +.if !defined(WITHOUT_X11) +RUN_DEPENDS= zenity>0:x11/zenity +.endif + +USE_GITHUB= yes +GH_ACCOUNT= Winetricks + +NO_ARCH= yes +NO_BUILD= yes +PLIST_FILES= bin/winetricks man/man1/winetricks.1.gz + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/src/winetricks ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/src/winetricks.1 \ + ${STAGEDIR}${MAN1PREFIX}/man/man1 + +.include Added: head/emulators/winetricks/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/winetricks/distinfo Mon Nov 7 10:12:59 2016 (r425599) @@ -0,0 +1,3 @@ +TIMESTAMP = 1476286164 +SHA256 (Winetricks-winetricks-20161012_GH0.tar.gz) = 094ecc82178bb2b6875e29927df068a1d7c114868ec86d5517e26e0214030f6f +SIZE (Winetricks-winetricks-20161012_GH0.tar.gz) = 175820 Added: head/emulators/winetricks/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/winetricks/pkg-descr Mon Nov 7 10:12:59 2016 (r425599) @@ -0,0 +1,7 @@ +Winetricks is an easy way to work around problems in Wine. + +It has a menu of supported games/apps for which it can do +all the workarounds automatically. It also lets you install +missing DLLs or tweak various Wine settings individually. + +WWW: https://wiki.winehq.org/Winetricks Added: head/emulators/winetricks/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/winetricks/pkg-message Mon Nov 7 10:12:59 2016 (r425599) @@ -0,0 +1,2 @@ +This port requires one of the wine ports installed. +Please pick between wine, wine-devel, or wine-staging.