1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

distutils: Sync with OE.dev

Signed-off-by: Richard Purdie <richard@rex.(none)>
This commit is contained in:
Richard Purdie
2009-12-05 23:18:02 +00:00
parent c7d4ad8e9d
commit 288e62a221
4 changed files with 44 additions and 16 deletions
@@ -0,0 +1,30 @@
EXTRA_OEMAKE = ""
export STAGING_INCDIR
export STAGING_LIBDIR
def python_dir(d):
import os, bb
staging_incdir = bb.data.getVar( "STAGING_INCDIR", d, 1 )
for majmin in "2.6 2.5 2.4 2.3".split():
if os.path.exists( "%s/python%s" % ( staging_incdir, majmin ) ): return "python%s" % majmin
if not "python-native" in bb.data.getVar( "DEPENDS", d, 1 ).split():
raise "No Python in STAGING_INCDIR. Forgot to build python-native ?"
return "INVALID"
PYTHON_DIR = "${@python_dir(d)}"
PACKAGES = "${PN}-dev ${PN}-dbg ${PN}-doc ${PN}"
FILES_${PN} = "${bindir}/* ${libdir}/* ${libdir}/${PYTHON_DIR}/*"
FILES_${PN}-dev += "\
${datadir}/pkgconfig \
${libdir}/pkgconfig \
${libdir}/${PYTHON_DIR}/site-packages/*.la \
"
FILES_${PN}-dbg = "\
${libdir}/${PYTHON_DIR}/site-packages/.debug \
${libdir}/${PYTHON_DIR}/site-packages/*/.debug \
${libdir}/${PYTHON_DIR}/site-packages/*/*/.debug \
"