diff options
-rw-r--r-- | meta/recipes-devtools/python/python_2.6.6.bb | 41 |
1 files changed, 27 insertions, 14 deletions
diff --git a/meta/recipes-devtools/python/python_2.6.6.bb b/meta/recipes-devtools/python/python_2.6.6.bb index a641ddd617..65875ff34a 100644 --- a/meta/recipes-devtools/python/python_2.6.6.bb +++ b/meta/recipes-devtools/python/python_2.6.6.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | require python.inc | 1 | require python.inc |
2 | DEPENDS = "python-native db gdbm openssl readline sqlite3 zlib" | 2 | DEPENDS = "python-native db gdbm openssl readline sqlite3 zlib" |
3 | DEPENDS_sharprom = "python-native db readline zlib gdbm openssl" | 3 | DEPENDS_sharprom = "python-native db readline zlib gdbm openssl" |
4 | PR = "${INC_PR}.2" | 4 | PR = "${INC_PR}.3" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=38fdd546420fab09ac6bd3d8a1c83eb6" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=38fdd546420fab09ac6bd3d8a1c83eb6" |
6 | 6 | ||
7 | DISTRO_SRC_URI ?= "file://sitecustomize.py" | 7 | DISTRO_SRC_URI ?= "file://sitecustomize.py" |
@@ -34,23 +34,26 @@ do_configure_prepend() { | |||
34 | autoreconf -Wcross --verbose --install --force --exclude=autopoint Modules/_ctypes/libffi || bbnote "_ctypes failed to autoreconf" | 34 | autoreconf -Wcross --verbose --install --force --exclude=autopoint Modules/_ctypes/libffi || bbnote "_ctypes failed to autoreconf" |
35 | } | 35 | } |
36 | 36 | ||
37 | # | 37 | do_compile() { |
38 | # Copy config.h and an appropriate Makefile for distutils.sysconfig, | 38 | # |
39 | # which laters uses the information out of these to compile extensions | 39 | # Copy config.h and an appropriate Makefile for distutils.sysconfig, |
40 | # | 40 | # which laters uses the information out of these to compile extensions |
41 | do_compile_prepend() { | 41 | # |
42 | # The following part (until python compilation) should probably moved to an | ||
43 | # -initial recipe to handle staging better | ||
44 | # | ||
42 | install -d ${STAGING_INCDIR}/python${PYTHON_MAJMIN}/ | 45 | install -d ${STAGING_INCDIR}/python${PYTHON_MAJMIN}/ |
43 | install -d ${STAGING_LIBDIR}/python${PYTHON_MAJMIN}/config/ | 46 | install -d ${STAGING_LIBDIR}/python${PYTHON_MAJMIN}/config/ |
44 | install -m 0644 pyconfig.h ${STAGING_INCDIR}/python${PYTHON_MAJMIN}/ | 47 | install -m 0644 pyconfig.h ${STAGING_INCDIR}/python${PYTHON_MAJMIN}/ |
48 | |||
49 | # remove hardcoded ccache, see http://bugs.openembedded.net/show_bug.cgi?id=4144 | ||
50 | sed -i -e s,ccache,'$(CCACHE)', Makefile | ||
51 | |||
45 | install -m 0644 Makefile Makefile.orig | 52 | install -m 0644 Makefile Makefile.orig |
46 | install -m 0644 Makefile Makefile.backup | 53 | sed -i -e 's,${includedir},${STAGING_INCDIR},' Makefile |
47 | sed -e 's,${includedir},${STAGING_INCDIR},' < Makefile.backup > Makefile | 54 | sed -i -e 's,${libdir},${STAGING_LIBDIR},' Makefile |
48 | install -m 0644 Makefile Makefile.backup | ||
49 | sed -e 's,${libdir},${STAGING_LIBDIR},' < Makefile.backup > Makefile | ||
50 | install -m 0644 Makefile ${STAGING_LIBDIR}/python${PYTHON_MAJMIN}/config/ | 55 | install -m 0644 Makefile ${STAGING_LIBDIR}/python${PYTHON_MAJMIN}/config/ |
51 | } | ||
52 | 56 | ||
53 | do_compile() { | ||
54 | oe_runmake HOSTPGEN=${STAGING_BINDIR_NATIVE}/pgen \ | 57 | oe_runmake HOSTPGEN=${STAGING_BINDIR_NATIVE}/pgen \ |
55 | HOSTPYTHON=${STAGING_BINDIR_NATIVE}/python \ | 58 | HOSTPYTHON=${STAGING_BINDIR_NATIVE}/python \ |
56 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | 59 | STAGING_LIBDIR=${STAGING_LIBDIR} \ |
@@ -69,6 +72,9 @@ do_compile() { | |||
69 | } | 72 | } |
70 | 73 | ||
71 | do_install() { | 74 | do_install() { |
75 | # make install needs the original Makefile, or otherwise the inclues would | ||
76 | # go to ${D}${STAGING...}/... | ||
77 | install -m 0644 Makefile Makefile.sysroot | ||
72 | install -m 0644 Makefile.orig Makefile | 78 | install -m 0644 Makefile.orig Makefile |
73 | 79 | ||
74 | oe_runmake HOSTPGEN=${STAGING_BINDIR_NATIVE}/pgen \ | 80 | oe_runmake HOSTPGEN=${STAGING_BINDIR_NATIVE}/pgen \ |
@@ -78,12 +84,19 @@ do_install() { | |||
78 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ | 84 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ |
79 | DESTDIR=${D} LIBDIR=${libdir} install | 85 | DESTDIR=${D} LIBDIR=${libdir} install |
80 | 86 | ||
87 | install -m 0644 Makefile.sysroot ${D}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile | ||
88 | rm Makefile.sysroot | ||
89 | |||
81 | if [ -e ${WORKDIR}/sitecustomize.py ]; then | 90 | if [ -e ${WORKDIR}/sitecustomize.py ]; then |
82 | install -m 0644 ${WORKDIR}/sitecustomize.py ${D}/${libdir}/python${PYTHON_MAJMIN} | 91 | install -m 0644 ${WORKDIR}/sitecustomize.py ${D}/${libdir}/python${PYTHON_MAJMIN} |
83 | fi | 92 | fi |
93 | } | ||
84 | 94 | ||
85 | # remove hardcoded ccache, see http://bugs.openembedded.net/show_bug.cgi?id=4144 | 95 | PACKAGE_PREPROCESS_FUNCS += "py_package_preprocess" |
86 | sed -i -e s,ccache,'$(CCACHE)', ${D}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile | 96 | |
97 | py_package_preprocess () { | ||
98 | # copy back the old Makefile to fix target package | ||
99 | install -m 0644 Makefile.orig ${D}/${libdir}/python${PYTHON_MAJMIN}/config/Makefile | ||
87 | } | 100 | } |
88 | 101 | ||
89 | require python-${PYTHON_MAJMIN}-manifest.inc | 102 | require python-${PYTHON_MAJMIN}-manifest.inc |