diff --git a/common/shlibs b/common/shlibs index 85c6dfd63b3..fe8e663b7a3 100644 --- a/common/shlibs +++ b/common/shlibs @@ -2460,6 +2460,7 @@ libipmimonitoring.so.5 freeipmi-1.5.1_1 libipmiconsole.so.2 freeipmi-1.5.1_1 libfreeipmi.so.17 freeipmi-1.5.1_1 libipmidetect.so.0 freeipmi-1.5.1_1 +libsmpeg-0.4.so.0 smpeg-0.4.5_3 libsmpeg2-2.0.so.0 smpeg2-2.0.0_1 libedac.so.1 libedac-0.18_1 libxlsreader.so.1 libxls-1.4.0_1 diff --git a/srcpkgs/python-pygame/patches/pygame-config.patch b/srcpkgs/python-pygame/patches/pygame-config.patch new file mode 100644 index 00000000000..d6777762298 --- /dev/null +++ b/srcpkgs/python-pygame/patches/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?"""): \ No newline at end of file diff --git a/srcpkgs/python-pygame/template b/srcpkgs/python-pygame/template new file mode 100644 index 00000000000..de061ec9ec3 --- /dev/null +++ b/srcpkgs/python-pygame/template @@ -0,0 +1,23 @@ +# Template file for 'python-pygame' + +pkgname="python-pygame" +version="1.9.1" +revision=1 +wrksrc="pygame-${version}release" +build_style=python-module +short_desc="Collection of python modules for writing games" +maintainer="Archaeme " +license="LGPL-2.1" +homepage="http://www.pygame.org/" +distfiles="http://www.pygame.org/ftp/pygame-${version}release.tar.gz" +checksum="a26095472ae4be9631e0d5bfb9a52ac57a3a091e45757913128e4a473807d433" +hostmakedepends="python-devel smpeg-devel" +makedepends="python-devel SDL_mixer-devel SDL_image-devel SDL_ttf-devel smpeg-devel v4l-utils-devel" + +do_configure() { + python config.py -auto +} + +post_configure() { + sed -i 's/linux\/videodev.h/libv4l1-videodev.h/g' ${wrksrc}/src/camera.h +}