diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2013-07-13 03:17:38 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2013-07-13 03:17:38 +0000 |
commit | daf374712a5a2fd94792d2294fde08ca6f4db757 (patch) | |
tree | 01ca61c232997750dd0ee2d7437aae696fdf44ba /app-emulation/winetricks | |
parent | Version bump, see http://www.winehq.org/announce/1.6-rc5 for the announcement... (diff) | |
download | gentoo-2-daf374712a5a2fd94792d2294fde08ca6f4db757.tar.gz gentoo-2-daf374712a5a2fd94792d2294fde08ca6f4db757.tar.bz2 gentoo-2-daf374712a5a2fd94792d2294fde08ca6f4db757.zip |
Version bump with fixes for CJK fonts, wmp10, vcrun2005. Drop old.
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key CF0ADD61)
Diffstat (limited to 'app-emulation/winetricks')
-rw-r--r-- | app-emulation/winetricks/ChangeLog | 8 | ||||
-rw-r--r-- | app-emulation/winetricks/winetricks-20130707.ebuild (renamed from app-emulation/winetricks/winetricks-960.ebuild) | 32 |
2 files changed, 24 insertions, 16 deletions
diff --git a/app-emulation/winetricks/ChangeLog b/app-emulation/winetricks/ChangeLog index 79da65510305..cab049813c9c 100644 --- a/app-emulation/winetricks/ChangeLog +++ b/app-emulation/winetricks/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-emulation/winetricks # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/ChangeLog,v 1.25 2013/07/09 12:41:56 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/ChangeLog,v 1.26 2013/07/13 03:17:38 tetromino Exp $ + +*winetricks-20130707 (13 Jul 2013) + + 13 Jul 2013; Alexandre Rostovtsev <tetromino@gentoo.org> + -winetricks-960.ebuild, +winetricks-20130707.ebuild: + Version bump with fixes for CJK fonts, wmp10, vcrun2005. Drop old. 09 Jul 2013; Alexandre Rostovtsev <tetromino@gentoo.org> winetricks-20130629.ebuild, winetricks-99999999.ebuild, metadata.xml: diff --git a/app-emulation/winetricks/winetricks-960.ebuild b/app-emulation/winetricks/winetricks-20130707.ebuild index 7ab24e075b42..f34109621fee 100644 --- a/app-emulation/winetricks/winetricks-960.ebuild +++ b/app-emulation/winetricks/winetricks-20130707.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-960.ebuild,v 1.1 2013/06/15 03:58:20 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-20130707.ebuild,v 1.1 2013/07/13 03:17:38 tetromino Exp $ EAPI=5 @@ -10,8 +10,7 @@ if [[ ${PV} == "99999999" ]] ; then ESVN_REPO_URI="http://winetricks.googlecode.com/svn/trunk" inherit subversion else - SRC_URI="http://winetricks.googlecode.com/svn-history/r${PV}/trunk/src/winetricks -> ${P} - http://winetricks.googlecode.com/svn-history/r${PV}/trunk/src/winetricks.1 -> ${P}.1" + SRC_URI="http://winetricks.org/download/releases/${P}.tar.gz" KEYWORDS="~amd64 ~x86" fi wtg=winetricks-gentoo-2012.11.24 @@ -24,39 +23,42 @@ HOMEPAGE="http://code.google.com/p/winetricks/ http://wiki.winehq.org/winetricks LICENSE="LGPL-2.1+" SLOT="0" -IUSE="gtk kde" +IUSE="gtk kde rar" DEPEND="" RDEPEND="app-arch/cabextract + app-arch/p7zip app-arch/unzip app-emulation/wine + net-misc/wget + x11-misc/xdg-utils gtk? ( gnome-extra/zenity ) - kde? ( kde-base/kdialog )" + kde? ( kde-base/kdialog ) + rar? ( app-arch/unrar )" # Uses non-standard "Wine" category, which is provided by app-emulation/wine; #451552 QA_DESKTOP_FILE="usr/share/applications/winetricks.desktop" +# Tests require network access and run wine, which is unreliable from a portage environment +RESTRICT="test" + S="${WORKDIR}" src_unpack() { if [[ ${PV} == "99999999" ]] ; then subversion_src_unpack + if use gtk || use kde; then + unpack ${wtg}.tar.bz2 + fi else - mkdir src - cp "${DISTDIR}"/${P} src/${PN} || die - cp "${DISTDIR}"/${P}.1 src/${PN}.1 || die - fi - if use gtk || use kde; then - unpack ${wtg}.tar.bz2 + default fi } src_install() { - cd src - dobin ${PN} - doman ${PN}.1 + default if use gtk || use kde; then - cd ../${wtg} || die + cd ${wtg} || die domenu winetricks.desktop insinto /usr/share/icons/hicolor/scalable/apps doins wine-winetricks.svg |