aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/python/python-pygame_1.8.1.bb
blob: 95191ce35006845b69809397db46bf279a4bc7ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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"