summaryrefslogtreecommitdiff
path: root/python/python-native_2.3.3.oe
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-01-23 11:42:03 +0000
committerChris Larson <clarson@kergoth.com>2004-01-23 11:42:03 +0000
commit31aba0db248276bd8fdd0e08ef0e3f3bbfde223c (patch)
tree93b2003b0a00bbe5059f8d7773e976543d404d2e /python/python-native_2.3.3.oe
parenta4ea6db84962e272bf9c1315bd98a65caa852d9b (diff)
Small fixes here and there in some -native builds.
BKrev: 4011088b6uyZvFFENH7gtaKmZS5SeQ
Diffstat (limited to 'python/python-native_2.3.3.oe')
-rw-r--r--python/python-native_2.3.3.oe25
1 files changed, 25 insertions, 0 deletions
diff --git a/python/python-native_2.3.3.oe b/python/python-native_2.3.3.oe
index e69de29bb2..118a1d6a14 100644
--- a/python/python-native_2.3.3.oe
+++ b/python/python-native_2.3.3.oe
@@ -0,0 +1,25 @@
+DESCRIPTION="Python Programming Language"
+SECTION="base"
+PRIORITY="optional"
+MAINTAINER="Michael Lauer <mickey@Vanille.de>"
+
+SRC_URI = ftp://www.python.org/pub/python/${PV}/Python-${PV}.tar.bz2 \
+ file://${FILESDIR}/bindir-libdir.patch;patch=1
+
+S = ${WORKDIR}/Python-${PV}
+
+inherit autotools native
+
+DEPENDS=patcher-native
+
+EXTRA_OECONF = '--with-threads --with-pymalloc --with-cyclic-gc --with-exec-prefix=${STAGING_DIR}/build'
+do_configure () {
+ oe_runconf
+}
+
+do_stage_append() {
+ # install pgen for later usage with non-native builds
+ install Parser/pgen ${STAGING_DIR}/build/bin
+}
+
+