diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-07-05 21:29:45 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-07-05 21:29:45 +0000 |
commit | cdfa9d916b3de72a792ee9a3d559b36236e859af (patch) | |
tree | 31b09dedd8aaf40797c40df7955722f700c8460a /app-emulation/winetricks | |
parent | added ~x64-macos (diff) | |
download | gentoo-2-cdfa9d916b3de72a792ee9a3d559b36236e859af.tar.gz gentoo-2-cdfa9d916b3de72a792ee9a3d559b36236e859af.tar.bz2 gentoo-2-cdfa9d916b3de72a792ee9a3d559b36236e859af.zip |
Add live ebuild and version bump #358997 by Sven Eden.
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/winetricks')
-rw-r--r-- | app-emulation/winetricks/ChangeLog | 9 | ||||
-rw-r--r-- | app-emulation/winetricks/winetricks-672.ebuild | 42 | ||||
-rw-r--r-- | app-emulation/winetricks/winetricks-99999999.ebuild | 42 |
3 files changed, 92 insertions, 1 deletions
diff --git a/app-emulation/winetricks/ChangeLog b/app-emulation/winetricks/ChangeLog index f4437a34de40..7875e09da89e 100644 --- a/app-emulation/winetricks/ChangeLog +++ b/app-emulation/winetricks/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-emulation/winetricks # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/ChangeLog,v 1.1 2011/03/01 02:35:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/ChangeLog,v 1.2 2011/07/05 21:29:45 vapier Exp $ + +*winetricks-99999999 (05 Jul 2011) +*winetricks-672 (05 Jul 2011) + + 05 Jul 2011; Mike Frysinger <vapier@gentoo.org> +winetricks-672.ebuild, + +winetricks-99999999.ebuild: + Add live ebuild and version bump #358997 by Sven Eden. *winetricks-185 (01 Mar 2011) diff --git a/app-emulation/winetricks/winetricks-672.ebuild b/app-emulation/winetricks/winetricks-672.ebuild new file mode 100644 index 000000000000..f14df0f46382 --- /dev/null +++ b/app-emulation/winetricks/winetricks-672.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-672.ebuild,v 1.1 2011/07/05 21:29:45 vapier Exp $ + +EAPI="2" + +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" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="easy way to install DLLs needed to work around problems in Wine" +HOMEPAGE="http://code.google.com/p/winetricks/ http://wiki.winehq.org/winetricks" + +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="gtk kde" + +DEPEND="" +RDEPEND="app-emulation/wine + gtk? ( gnome-extra/zenity ) + kde? ( kde-base/kdialog )" + +src_unpack() { + if [[ ${PV} == "99999999" ]] ; then + subversion_src_unpack + else + mkdir src + cp "${DISTDIR}"/${P} src/${PN} || die + cp "${DISTDIR}"/${P}.1 src/${PN}.1 || die + fi +} + +src_install() { + cd src + dobin ${PN} || die + doman ${PN}.1 || die +} diff --git a/app-emulation/winetricks/winetricks-99999999.ebuild b/app-emulation/winetricks/winetricks-99999999.ebuild new file mode 100644 index 000000000000..203b88561578 --- /dev/null +++ b/app-emulation/winetricks/winetricks-99999999.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/winetricks/winetricks-99999999.ebuild,v 1.1 2011/07/05 21:29:44 vapier Exp $ + +EAPI="2" + +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" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="easy way to install DLLs needed to work around problems in Wine" +HOMEPAGE="http://code.google.com/p/winetricks/ http://wiki.winehq.org/winetricks" + +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="gtk kde" + +DEPEND="" +RDEPEND="app-emulation/wine + gtk? ( gnome-extra/zenity ) + kde? ( kde-base/kdialog )" + +src_unpack() { + if [[ ${PV} == "99999999" ]] ; then + subversion_src_unpack + else + mkdir src + cp "${DISTDIR}"/${P} src/${PN} || die + cp "${DISTDIR}"/${P}.1 src/${PN}.1 || die + fi +} + +src_install() { + cd src + dobin ${PN} || die + doman ${PN}.1 || die +} |