python-pycairo: fix installation path of __init__.py

This fixes Bug [YOCTO #477]

(From OE-Core rev: 8f6436b25a96594d09c64c7ba20a045cb1f8d18a)

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Nitin A Kamble 2011-04-15 18:54:04 -07:00 committed by Richard Purdie
parent db182009ab
commit 4ffd8a2d72
1 changed files with 7 additions and 1 deletions

View File

@ -6,7 +6,7 @@ LICENSE = "LGPLv2.1 & MPLv1.1"
LIC_FILES_CHKSUM = "file://COPYING;md5=f2e071ab72978431b294a0d696327421"
# cairo >= 1.8.8
DEPENDS = "cairo"
PR = "ml0"
PR = "r1"
SRC_URI = "http://cairographics.org/releases/py2cairo-${PV}.tar.gz"
@ -16,6 +16,12 @@ S = "${WORKDIR}/pycairo-${PV}"
inherit distutils pkgconfig
do_compile_prepend() {
#fix the installation path of __init__.py
#It was going in the sysroot instead of target install location
sed -i -e "s#dsy.get_python_lib()#'${D}${PYTHON_SITEPACKAGES_DIR}'#" ${S}/setup.py
}
do_install_append () {
install -d ${D}${includedir}
install -d ${D}${libdir}