diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-08 01:04:47 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-08 01:04:47 +0000 |
commit | ac4dd7531688535d5bc56a7e6660ff8da41fd12c (patch) | |
tree | c2918aae2cfd70461d24b04804fc1157907f1864 /app-emulation/point2play | |
parent | Adding ~mips keyword as per bug #82560 (diff) | |
download | historical-ac4dd7531688535d5bc56a7e6660ff8da41fd12c.tar.gz historical-ac4dd7531688535d5bc56a7e6660ff8da41fd12c.tar.bz2 historical-ac4dd7531688535d5bc56a7e6660ff8da41fd12c.zip |
Version bump #95376 by Mike Hepple.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'app-emulation/point2play')
-rw-r--r-- | app-emulation/point2play/ChangeLog | 9 | ||||
-rw-r--r-- | app-emulation/point2play/Manifest | 4 | ||||
-rw-r--r-- | app-emulation/point2play/files/digest-point2play-2.0.1 | 1 | ||||
-rw-r--r-- | app-emulation/point2play/point2play-2.0.1.ebuild | 42 |
4 files changed, 53 insertions, 3 deletions
diff --git a/app-emulation/point2play/ChangeLog b/app-emulation/point2play/ChangeLog index 38949fe38cc6..1dfcff37c16f 100644 --- a/app-emulation/point2play/ChangeLog +++ b/app-emulation/point2play/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/point2play -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/point2play/ChangeLog,v 1.17 2005/03/08 23:20:29 vapier Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/point2play/ChangeLog,v 1.18 2005/06/08 01:04:47 vapier Exp $ + +*point2play-2.0.1 (08 Jun 2005) + + 08 Jun 2005; Mike Frysinger <vapier@gentoo.org> +point2play-2.0.1.ebuild: + Version bump #95376 by Mike Hepple. *point2play-1.3.3 (08 Mar 2005) diff --git a/app-emulation/point2play/Manifest b/app-emulation/point2play/Manifest index a02b5c8a0b77..7824cbf287a9 100644 --- a/app-emulation/point2play/Manifest +++ b/app-emulation/point2play/Manifest @@ -1,5 +1,7 @@ -MD5 f93ba08d5711bff0594f6bc59c577572 ChangeLog 2569 +MD5 12f9ee6a5c267bf1ccf33fd0d106943a ChangeLog 2717 MD5 086d7322b591c18822e6a6ef25213c3b metadata.xml 465 MD5 15d1bcecd833e6ed26649dd488d399c3 point2play-1.3.3.ebuild 1075 +MD5 456457e37e48afabccd5ddf5926ac63a point2play-2.0.1.ebuild 1073 MD5 f7671ce19e085f88c3681e920d9286cc files/digest-point2play-1.3.3 73 +MD5 3f9b82889b2f4bb9145ffbb4c6fbfb7f files/digest-point2play-2.0.1 72 MD5 d7589e80ac0d830c971c8f43268eb558 files/1.3.2-fix-sound-test.patch 1032 diff --git a/app-emulation/point2play/files/digest-point2play-2.0.1 b/app-emulation/point2play/files/digest-point2play-2.0.1 new file mode 100644 index 000000000000..1bfd98570f8c --- /dev/null +++ b/app-emulation/point2play/files/digest-point2play-2.0.1 @@ -0,0 +1 @@ +MD5 8c3a22d57b897ecc9c6ec82ec9df0c6b point2play-small-2.0.1.tgz 1270826 diff --git a/app-emulation/point2play/point2play-2.0.1.ebuild b/app-emulation/point2play/point2play-2.0.1.ebuild new file mode 100644 index 000000000000..384fdc581e39 --- /dev/null +++ b/app-emulation/point2play/point2play-2.0.1.ebuild @@ -0,0 +1,42 @@ +# 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.1.ebuild,v 1.1 2005/06/08 01:04:47 vapier Exp $ + +inherit eutils + +MY_P=${PN}-small-${PV} +DESCRIPTION="graphical frontend for WineX" +HOMEPAGE="http://www.transgaming.com/" +SRC_URI="${MY_P}.tgz" + +LICENSE="point2play" +SLOT="0" +KEYWORDS="-* ~amd64 x86" +IUSE="" +RESTRICT="fetch" + +RDEPEND="virtual/x11 + >=dev-lang/python-2.3 + >=dev-python/pygtk-2.4" + #>=x11-themes/gtk-engines-metal-2.2.0" + +S=${WORKDIR} + +pkg_nofetch() { + einfo "Please download the appropriate Point2Play archive (${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" + mv etc/X11/applnk "${D}"/usr/share + make_desktop_entry Point2Play Point2Play /usr/lib/transgaming_point2play/pixmaps/tg_logo.png +} |