diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-24 05:54:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-24 05:54:26 +0000 |
commit | 5ade07a804bed9c6965f82cc04b8181ce12dd05b (patch) | |
tree | 2f0dbb6eeb727d4d0e475558d020df59c0439790 /app-emulation/point2play | |
parent | ver bump #64065 and patch fix #61721 (Manifest recommit) (diff) | |
download | gentoo-2-5ade07a804bed9c6965f82cc04b8181ce12dd05b.tar.gz gentoo-2-5ade07a804bed9c6965f82cc04b8181ce12dd05b.tar.bz2 gentoo-2-5ade07a804bed9c6965f82cc04b8181ce12dd05b.zip |
old
Diffstat (limited to 'app-emulation/point2play')
11 files changed, 0 insertions, 250 deletions
diff --git a/app-emulation/point2play/files/1.1.1-python2.2.patch b/app-emulation/point2play/files/1.1.1-python2.2.patch deleted file mode 100644 index fd24b7762af5..000000000000 --- a/app-emulation/point2play/files/1.1.1-python2.2.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- usr/lib/transgaming_point2play/tests/test_sound.py.orig 2003-09-16 14:04:31.000000000 -0400 -+++ usr/lib/transgaming_point2play/tests/test_sound.py 2003-10-07 15:17:36.044822360 -0400 -@@ -12,14 +12,21 @@ - import wave - import os, os.path - --import ossaudiodev -- -+disable_oss = 0; -+try: -+ import ossaudiodev -+except: -+ print "Python 2.3 not found. Disabling oss audio tests." -+ disable_oss = 1; - - TESTS = (_("Test For Sound Support"), "tgtest_sound", False), - - def tgtest_sound(): - """runs a test to ensure that sound output is working""" - -+ if disable_oss: -+ return ((_('Basic sound test'), _('Test is disabled.'), 'red'),) -+ - try: - try: - P2PPATH=os.environ["P2PPATH"] + "/" -@@ -56,6 +63,11 @@ - return ((_('Basic sound test'), _('Completed successfully\nDid you hear the sound?'), 'green'),) - - def tgtest_sound_description(): -+ if disable_oss: -+ return _('This test has been disabled.\n') + \ -+ _('Please see:\n') + \ -+ _('http://bugs.gentoo.org/show_bug.cgi?id=30556\n') + \ -+ _('for more information.') - return _('This test attempts to play a sound\n') + \ - _('file at 44 khz. This test uses the\n') + \ - _('same method as WineX to play sound\n') + \ diff --git a/app-emulation/point2play/files/1.2-python2.2.patch b/app-emulation/point2play/files/1.2-python2.2.patch deleted file mode 100644 index fd24b7762af5..000000000000 --- a/app-emulation/point2play/files/1.2-python2.2.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- usr/lib/transgaming_point2play/tests/test_sound.py.orig 2003-09-16 14:04:31.000000000 -0400 -+++ usr/lib/transgaming_point2play/tests/test_sound.py 2003-10-07 15:17:36.044822360 -0400 -@@ -12,14 +12,21 @@ - import wave - import os, os.path - --import ossaudiodev -- -+disable_oss = 0; -+try: -+ import ossaudiodev -+except: -+ print "Python 2.3 not found. Disabling oss audio tests." -+ disable_oss = 1; - - TESTS = (_("Test For Sound Support"), "tgtest_sound", False), - - def tgtest_sound(): - """runs a test to ensure that sound output is working""" - -+ if disable_oss: -+ return ((_('Basic sound test'), _('Test is disabled.'), 'red'),) -+ - try: - try: - P2PPATH=os.environ["P2PPATH"] + "/" -@@ -56,6 +63,11 @@ - return ((_('Basic sound test'), _('Completed successfully\nDid you hear the sound?'), 'green'),) - - def tgtest_sound_description(): -+ if disable_oss: -+ return _('This test has been disabled.\n') + \ -+ _('Please see:\n') + \ -+ _('http://bugs.gentoo.org/show_bug.cgi?id=30556\n') + \ -+ _('for more information.') - return _('This test attempts to play a sound\n') + \ - _('file at 44 khz. This test uses the\n') + \ - _('same method as WineX to play sound\n') + \ diff --git a/app-emulation/point2play/files/1.3-fix-sound-test.patch b/app-emulation/point2play/files/1.3-fix-sound-test.patch deleted file mode 100644 index edd728860636..000000000000 --- a/app-emulation/point2play/files/1.3-fix-sound-test.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- usr/lib/transgaming_point2play/tests/test_sound.py.suckit 2004-06-22 01:28:14.000000000 -0400 -+++ usr/lib/transgaming_point2play/tests/test_sound.py 2004-06-23 18:46:52.866931568 -0400 -@@ -30,14 +31,12 @@ - except: - return ((_('Basic sound test'), _("Unable to open sound file,\nCan not test sound card"), 'red'),) - try: -- audio_out = ossaudiodev.open('/dev/dsp', 'w') -+ audio_out = ossaudiodev.open('w') - except IOError, e: - return ((_('Basic sound test'), _('Unable to open /dev/dsp'), 'red'),) - - try: -- audio_out.setparameters(TestSound1.getframerate(), 16, -- TestSound1.getnchannels(), ossaudiodev.AFMT_S16_LE, False) -- #FIXME: use getsampwidth for 16 and AFMT_S16_LE -+ audio_out.setparameters(ossaudiodev.AFMT_S16_LE, TestSound1.getnchannels(), TestSound1.getframerate()) - except: - audio_out.close() - return ((_('Basic sound test'), _('Unable to play sound, your\nSound card may not be configured correctly'), 'red'),) diff --git a/app-emulation/point2play/files/1.3.1-fix-sound-test.patch b/app-emulation/point2play/files/1.3.1-fix-sound-test.patch deleted file mode 100644 index 4cfcdcd2b06b..000000000000 --- a/app-emulation/point2play/files/1.3.1-fix-sound-test.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- /var/tmp/portage/point2play-1.3.1/work/usr/lib/transgaming_point2play/tests/test_sound.py.orig 2004-08-14 01:22:11.956853792 -0400 -+++ /var/tmp/portage/point2play-1.3.1/work/usr/lib/transgaming_point2play/tests/test_sound.py 2004-08-14 01:22:20.241594320 -0400 -@@ -40,15 +40,13 @@ - # OSS Portion of the test - # - try: -- audio_out = ossaudiodev.open('/dev/dsp', 'w') -+ audio_out = ossaudiodev.open('w') - except IOError, e: - OSSResult = ((_('OSS Sound Support'), _('Unable to open /dev/dsp'), 'red')) - - if audio_out: - try: -- audio_out.setparameters(TestSound1.getframerate(), 16, -- TestSound1.getnchannels(), ossaudiodev.AFMT_S16_LE, False) -- #FIXME: use getsampwidth for 16 and AFMT_S16_LE -+ audio_out.setparameters(ossaudiodev.AFMT_S16_LE, TestSound1.getnchannels(), TestSound1.getframerate()) - except: - audio_out.close() - OSSResult = ((_('OSS Sound Support'), _('Unable to play sound, your\nSound card may not be configured correctly'), 'red')) diff --git a/app-emulation/point2play/files/Point2Play b/app-emulation/point2play/files/Point2Play deleted file mode 100644 index 84edd0c35f69..000000000000 --- a/app-emulation/point2play/files/Point2Play +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -# Copyright (c) 2003 TransGaming Technologies Inc. -# Startup script for Point2Play. -# Version 1.1 Nov.26, 2003 - -if !([ -e "$HOME/.point2play" ]); then - mkdir "$HOME/.point2play" -fi - -export P2PPATH=/usr/lib/transgaming_point2play -python ${P2PPATH}/Point2Play_gui.py "$@" diff --git a/app-emulation/point2play/files/digest-point2play-1.1.1-r1 b/app-emulation/point2play/files/digest-point2play-1.1.1-r1 deleted file mode 100644 index a3832fe14f20..000000000000 --- a/app-emulation/point2play/files/digest-point2play-1.1.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 28c4923267e19d2cb61133783ca16858 point2play-small-1.1.1.tgz 562688 diff --git a/app-emulation/point2play/files/digest-point2play-1.2.2b-r2 b/app-emulation/point2play/files/digest-point2play-1.2.2b-r2 deleted file mode 100644 index f942de153fe7..000000000000 --- a/app-emulation/point2play/files/digest-point2play-1.2.2b-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 05542d233be6a543d44e4c9d64304cc9 point2play-1.2.2.b.tgz 8522125 diff --git a/app-emulation/point2play/files/digest-point2play-1.3.1 b/app-emulation/point2play/files/digest-point2play-1.3.1 deleted file mode 100644 index 1e72840e750a..000000000000 --- a/app-emulation/point2play/files/digest-point2play-1.3.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 0bbe23e4d53074b9e959a32bd2ae8afd point2play-small-1.3.1.tgz 822885 diff --git a/app-emulation/point2play/point2play-1.1.1-r1.ebuild b/app-emulation/point2play/point2play-1.1.1-r1.ebuild deleted file mode 100644 index 23b78ee31aef..000000000000 --- a/app-emulation/point2play/point2play-1.1.1-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/point2play/point2play-1.1.1-r1.ebuild,v 1.6 2004/06/25 11:56:00 agriffis 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="3" -KEYWORDS="x86" -IUSE="" -RESTRICT="fetch" - -RDEPEND="virtual/x11 - >=dev-lang/python-2.0 - >=dev-python/pygtk-1.99.16 - >=x11-themes/gtk-engines-metal-2.2.0" - -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} - epatch ${FILESDIR}/${PV}-python2.2.patch -} - -src_install() { - mv ${WORKDIR}/usr ${D} -} diff --git a/app-emulation/point2play/point2play-1.2.2b-r2.ebuild b/app-emulation/point2play/point2play-1.2.2b-r2.ebuild deleted file mode 100644 index 535a4938bdab..000000000000 --- a/app-emulation/point2play/point2play-1.2.2b-r2.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/point2play/point2play-1.2.2b-r2.ebuild,v 1.2 2004/06/25 11:56:00 agriffis Exp $ - -inherit eutils - -MY_P=${PN}-1.2.2.b -DESCRIPTION="graphical frontend for WineX" -HOMEPAGE="http://www.transgaming.com/" -SRC_URI="${MY_P}.tgz" - -LICENSE="point2play" -SLOT="3" -KEYWORDS="x86" -IUSE="" -RESTRICT="fetch" - -RDEPEND="virtual/x11 - >=dev-lang/python-2.3 - >=dev-python/pygtk-1.99.16 - >=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} - epatch ${FILESDIR}/1.2-python2.2.patch -} - -src_install() { - rm -rf \ - etc/X11/susewm \ - usr/lib/menu \ - usr/lib/transgaming_point2play/{bin,etc,lib} - mv * ${D} - dobin ${FILESDIR}/Point2Play -} diff --git a/app-emulation/point2play/point2play-1.3.1.ebuild b/app-emulation/point2play/point2play-1.3.1.ebuild deleted file mode 100644 index ec43514679ef..000000000000 --- a/app-emulation/point2play/point2play-1.3.1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/point2play/point2play-1.3.1.ebuild,v 1.7 2004/08/18 16:56:44 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="x86" -IUSE="" -RESTRICT="fetch" - -RDEPEND="virtual/x11 - >=dev-lang/python-2.3 - >=dev-python/pygtk-1.99.16 - >=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} - epatch ${FILESDIR}/${PV}-fix-sound-test.patch -} - -src_install() { - mv usr ${D}/ - mv etc/X11/applnk ${D}/usr/share -} |