From: Chris Larson Date: Mon, 3 Nov 2003 22:12:46 +0000 (+0000) Subject: Merge openembedded@openembedded.bkbits.net:packages X-Git-Tag: Release-2010-05/1~20579 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c8d36619fb363f1d34d89596d69d9572765ee7a;p=openembedded.git Merge openembedded@openembedded.bkbits.net:packages into direwolf.ppp.ti.com:/home/kergoth/coding/projects/user/oe-metadata/packages 2003/11/03 22:06:59+01:00 vanille.de!mickey add bindir-libdir patch for python BKrev: 3fa6d2deqjcOlkWfJ5TxsjU6oAgVBg --- diff --git a/python/python-2.3.2/bindir-libdir.patch b/python/python-2.3.2/bindir-libdir.patch new file mode 100644 index 0000000000..e69de29bb2 diff --git a/python/python-native_2.3.2.oe b/python/python-native_2.3.2.oe index e69de29bb2..95ebc29a8f 100644 --- a/python/python-native_2.3.2.oe +++ b/python/python-native_2.3.2.oe @@ -0,0 +1,11 @@ +include python_${PV}.oe +inherit native + +FILESDIR = ${@os.path.dirname(oe.data.getVar('FILE',d,1))}/python-${PV} + +do_stage_append() { + # install pgen for later usage with non-native builds + install Parser/pgen ${STAGING_DIR}/build/bin +} + + diff --git a/python/python_2.3.2.oe b/python/python_2.3.2.oe index e69de29bb2..21c65b8894 100644 --- a/python/python_2.3.2.oe +++ b/python/python_2.3.2.oe @@ -0,0 +1,16 @@ +DESCRIPTION="Python Programming Language" +SECTION="base" +PRIORITY="optional" +MAINTAINER="Michael Lauer " +RDEPENDS="libc6" +DEPENDS=virtual/libc + +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 + +EXTRA_OECONF = '--with-threads --with-pymalloc --with-cyclic-gc --with-exec-prefix=${STAGING_DIR}/build' +