summaryrefslogtreecommitdiff
path: root/recipes/python/python-pygame_1.8.1.bb
diff options
context:
space:
mode:
authorSergey Lapin <slapin@ossfans.org>2010-03-22 18:13:56 +0300
committerSergey Lapin <slapin@ossfans.org>2010-03-22 18:13:56 +0300
commit3937c88166a493900a694ea8fe53b860f4099d83 (patch)
tree57597245b6efd4cf27c1f4c9ff21c0515e530c15 /recipes/python/python-pygame_1.8.1.bb
parentdf2ace6d59e22b42e50bcf4e8a9c92b580602c2e (diff)
parent3510d2ed15a4b477aa7af802a839e11a87b981ed (diff)
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/python/python-pygame_1.8.1.bb')
-rw-r--r--recipes/python/python-pygame_1.8.1.bb30
1 files changed, 0 insertions, 30 deletions
diff --git a/recipes/python/python-pygame_1.8.1.bb b/recipes/python/python-pygame_1.8.1.bb
deleted file mode 100644
index 95191ce350..0000000000
--- a/recipes/python/python-pygame_1.8.1.bb
+++ /dev/null
@@ -1,30 +0,0 @@
-DESCRIPTION = "Python libSDL Bindings"
-SECTION = "devel/python"
-HOMEPAGE = "http://www.pygame.org"
-LICENSE = "LGPL"
-DEPENDS = "libsdl-x11 libsdl-image libsdl-mixer libsdl-net libsdl-ttf python-numeric"
-DEPENDS += "${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'smpeg', d)}"
-SRCNAME = "pygame"
-PR = "ml4"
-
-SRC_URI = "\
- ftp://ftp.pygame.org/pub/pygame/${SRCNAME}-${PV}release.tar.gz \
- file://Setup \
-"
-S = "${WORKDIR}/${SRCNAME}-${PV}release"
-
-inherit distutils
-
-do_configure_prepend() {
- cat ${WORKDIR}/Setup >Setup
- SDL="`sdl-config --cflags` `sdl-config --libs`"; echo "SDL=$SDL" >>Setup
- if [ '${ENTERPRISE_DISTRO}' != '1' ]; then
- echo "movie src/movie.c \$(SDL) \$(SMPEG) \$(DEBUG)" >>Setup
- fi
-}
-
-do_stage() {
- distutils_stage_all
-}
-
-RDEPENDS = "python-numeric"