make distutils.bbclass add RDEPENDS += python-core
authorMichael Lauer <mickey@vanille-media.de>
Thu, 9 Dec 2004 18:08:41 +0000 (18:08 +0000)
committerMichael Lauer <mickey@vanille-media.de>
Thu, 9 Dec 2004 18:08:41 +0000 (18:08 +0000)
BKrev: 41b894a925HLYQ3AukJV6bRfMhuXKg

classes/distutils.bbclass

index e69de29..9918502 100644 (file)
@@ -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