diff options
Diffstat (limited to 'extra/python-pygame')
-rw-r--r-- | extra/python-pygame/ChangeLog | 30 | ||||
-rw-r--r-- | extra/python-pygame/PKGBUILD | 38 | ||||
-rw-r--r-- | extra/python-pygame/config.patch | 26 |
3 files changed, 94 insertions, 0 deletions
diff --git a/extra/python-pygame/ChangeLog b/extra/python-pygame/ChangeLog new file mode 100644 index 000000000..ddfd90fe8 --- /dev/null +++ b/extra/python-pygame/ChangeLog @@ -0,0 +1,30 @@ +2010-08-24 Eric Belanger <eric@archlinux.org> + + * Rebuilt for python2 + +2009-08-06 Douglas Soares de Andrade <douglas@archlinux.org> + + * Updated to: 1.9.1 + +2009-08-03 Douglas Soares de Andrade <douglas@archlinux.org> + + * Adding the examples folder + +2009-08-01 Douglas Soares de Andrade <douglas@archlinux.org> + + * Updated for x86_64: 1.9.0 + +2008-08-06 Eric Belanger <eric@archlinux.org> + + * python-pygame 1.8.1-2 + * Fixed file permissions (close FS#11082) + +2008-07-31 Douglas Soares de Andrade <douglas@archlinux.org> + + * Updated for i686: 1.8.1 + +2008-03-31 Eric Belanger <eric@archlinux.org> + + * python-pygame 1.8.0-1 + * Upstream update + * Added ChangeLog diff --git a/extra/python-pygame/PKGBUILD b/extra/python-pygame/PKGBUILD new file mode 100644 index 000000000..a3447b7ce --- /dev/null +++ b/extra/python-pygame/PKGBUILD @@ -0,0 +1,38 @@ +# $Id: PKGBUILD 88496 2010-08-24 05:39:06Z eric $ +# Contributor: Douglas Soares de Andrade <douglas@archlinux.org> +# Contributor: Eric Belanger <eric@archlinux.org> +# Contributor: john(?) +# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> + +pkgname=python-pygame +pkgver=1.9.1 +pkgrel=3 +pkgdesc="Python game library" +arch=('i686' 'x86_64') +url="http://www.pygame.org/" +license=('LGPL') +depends=('python2' 'sdl_mixer' 'libvorbis' 'sdl_ttf' 'sdl_image' 'smpeg') +replaces=('pygame') +provides=('pygame') +changelog=ChangeLog +source=(http://pygame.org/ftp/pygame-${pkgver}release.tar.gz 'config.patch') +md5sums=('1c4cdc708d17c8250a2d78ef997222fc' 'aaa668f3cd710d8604114501ea6a6f48') +sha1sums=('a45aeb0623e36ae7a1707b5f41ee6274f72ca4fa' '285815e28705d5a2aea53c9d952d35fddf10dd13') + +build() { + cd "${srcdir}/pygame-${pkgver}release" + patch -Np0 -i "${srcdir}/config.patch" + python2 config.py -auto +} + +package() { + cd "${srcdir}/pygame-${pkgver}release" + python2 setup.py install --root="${pkgdir}" --prefix=/usr + + # Copying the examples and tests + cp -R examples lib/* "${pkgdir}/usr/lib/python2.7/site-packages/pygame" + cp -R test/* "${pkgdir}/usr/lib/python2.7/site-packages/pygame/tests" + + # Fixing permissions + chmod 644 "${pkgdir}"/usr/include/python2.7/pygame/* +} diff --git a/extra/python-pygame/config.patch b/extra/python-pygame/config.patch new file mode 100644 index 000000000..b3dab162c --- /dev/null +++ b/extra/python-pygame/config.patch @@ -0,0 +1,26 @@ +Index: config_unix.py +=================================================================== +--- config_unix.py (revision 2567) ++++ config_unix.py (working copy) +@@ -174,7 +174,7 @@ + + for d in DEPS[1:]: + if not d.found: +- if not confirm(""" ++ if "-auto" not in sys.argv and not confirm(""" + Warning, some of the pygame dependencies were not found. Pygame can still + compile and install, but games that depend on those missing dependencies + will not run. Would you like to continue the configuration?"""): +Index: config_msys.py +=================================================================== +--- config_msys.py (revision 2567) ++++ config_msys.py (working copy) +@@ -283,7 +283,7 @@ + + for d in DEPS[1:]: + if not d.found: +- if not confirm(""" ++ if "-auto" not in sys.argv and not confirm(""" + Warning, some of the pygame dependencies were not found. Pygame can still + compile and install, but games that depend on those missing dependencies + will not run. Would you like to continue the configuration?"""): |