diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-12-09 18:08:41 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-12-09 18:08:41 +0000 |
commit | a8f24080a73fb0c3af7900f700bef855416aa84e (patch) | |
tree | c14a4c13dc83a8269c0af7ba6ebf3d75642f0451 /classes | |
parent | 0afa6f0f95665dcd9e8532533117d97776ef207e (diff) |
make distutils.bbclass add RDEPENDS += python-core
BKrev: 41b894a925HLYQ3AukJV6bRfMhuXKg
Diffstat (limited to 'classes')
-rw-r--r-- | classes/distutils.bbclass | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/classes/distutils.bbclass b/classes/distutils.bbclass index e69de29bb2..9918502c64 100644 --- a/classes/distutils.bbclass +++ b/classes/distutils.bbclass @@ -0,0 +1,20 @@ +inherit base +EXTRA_OEMAKE = "" +DEPENDS += "${@["python-native python", ""][(bb.data.getVar('PACKAGES', d, 1) == '')]}" +RDEPENDS += "python-core" + +FILES_${PN} = "${bindir} ${libdir} ${libdir}/python2.3" + +distutils_do_compile() { + BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ + ${STAGING_BINDIR}/python setup.py build || \ + oefatal "python setup.py build execution failed." +} + +distutils_do_install() { + BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \ + ${STAGING_BINDIR}/python setup.py install --prefix=${D}/${prefix} --install-data=${D}/${datadir} || \ + oefatal "python setup.py install execution failed." +} + +EXPORT_FUNCTIONS do_compile do_install |