diff options
Diffstat (limited to 'app-emulation/point2play/point2play-2.0.3.ebuild')
-rw-r--r-- | app-emulation/point2play/point2play-2.0.3.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/app-emulation/point2play/point2play-2.0.3.ebuild b/app-emulation/point2play/point2play-2.0.3.ebuild new file mode 100644 index 000000000000..24703c9804c4 --- /dev/null +++ b/app-emulation/point2play/point2play-2.0.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/point2play/point2play-2.0.3.ebuild,v 1.1 2005/08/12 23:00:09 vapier Exp $ + +inherit eutils + +MY_P=${PN}-small-${PV} +DESCRIPTION="graphical frontend for WineX" +HOMEPAGE="http://www.transgaming.com/" +SRC_URI="!emerald? ( ${MY_P}.tgz )" + #emerald? ( ${MY_P}_emerald.tgz )" + +LICENSE="point2play" +SLOT="0" +KEYWORDS="-* ~amd64 x86" +IUSE="" #emerald" +RESTRICT="fetch" + +RDEPEND="virtual/x11 + >=dev-lang/python-2.3 + >=dev-python/pygtk-2.4 + amd64? ( >=app-emulation/emul-linux-x86-soundlibs-2.1 )" + #>=x11-themes/gtk-engines-metal-2.2.0" + +S=${WORKDIR} + +pkg_nofetch() { + einfo "Please download the appropriate Point2Play archive:" + use emerald \ + && einfo " ${MY_P}_emerald.tgz" \ + || einfo " ${MY_P}.tgz" + einfo "from ${HOMEPAGE} (requires a Transgaming subscription)" + echo + einfo "The archive should then be placed into ${DISTDIR}" +} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/1.3.2-fix-sound-test.patch +} + +src_install() { + mv usr "${D}"/ || die "mv usr" + # remove duplicated desktop files + rm -r "${D}"/usr/share/gnome +} |