diff options
| author | Richard Purdie <richard@openedhand.com> | 2006-05-23 11:07:10 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2006-05-23 11:07:10 +0000 |
| commit | 7defc582e098a099f9056aa4ff18e200361ad512 (patch) | |
| tree | 9639952bc4f98bf7eaa15720ffe3a3f4d9b8b52b /openembedded/packages/python/python-native_2.4.0.bb | |
| parent | 632eaf43e31e0b3f9165f341555642de3defe291 (diff) | |
| download | poky-7defc582e098a099f9056aa4ff18e200361ad512.tar.gz | |
Add python+pyhton-pygtk2
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@415 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/python/python-native_2.4.0.bb')
| -rw-r--r-- | openembedded/packages/python/python-native_2.4.0.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/openembedded/packages/python/python-native_2.4.0.bb b/openembedded/packages/python/python-native_2.4.0.bb new file mode 100644 index 0000000000..00092d1e15 --- /dev/null +++ b/openembedded/packages/python/python-native_2.4.0.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | DESCRIPTION = "Python Programming Language" | ||
| 2 | HOMEPAGE = "http://www.python.org" | ||
| 3 | LICENSE = "PSF" | ||
| 4 | SECTION = "devel/python" | ||
| 5 | PRIORITY = "optional" | ||
| 6 | MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" | ||
| 7 | DEPENDS = "" | ||
| 8 | PR = "r0" | ||
| 9 | |||
| 10 | EXCLUDE_FROM_WORLD = "1" | ||
| 11 | |||
| 12 | SRC_URI = "http://www.python.org/ftp/python/2.4/Python-2.4.tar.bz2 \ | ||
| 13 | file://bindir-libdir.patch;patch=1 \ | ||
| 14 | file://cross-distutils.patch;patch=1" | ||
| 15 | S = "${WORKDIR}/Python-2.4" | ||
| 16 | |||
| 17 | inherit autotools native | ||
| 18 | |||
| 19 | EXTRA_OECONF = "--with-threads --with-pymalloc --with-cyclic-gc --without-cxx --with-signal-module --with-wctype-functions \ | ||
| 20 | --with-prefix=${STAGING_DIR} --with-exec-prefix=${STAGING_DIR}/${BUILD_SYS}" | ||
| 21 | EXTRA_OEMAKE = 'BUILD_SYS="" HOST_SYS=""' | ||
| 22 | |||
| 23 | do_configure () { | ||
| 24 | oe_runconf | ||
| 25 | } | ||
| 26 | |||
| 27 | do_stage_append() { | ||
| 28 | # install pgen for later usage with non-native builds | ||
| 29 | install Parser/pgen ${STAGING_DIR}/${BUILD_SYS}/bin/ | ||
| 30 | } | ||
| 31 | |||
