X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=classes%2Fefl.bbclass;h=805422fdf4383bc65a897e3a62ca891b288d79ec;hb=HEAD;hp=d333c4b43468652e4351e5b3a28d9ee16dc7d054;hpb=b987a6e62b85d6f50b5a802e12c170ca269a1f2e;p=vuplus_openembedded diff --git a/classes/efl.bbclass b/classes/efl.bbclass index d333c4b..805422f 100644 --- a/classes/efl.bbclass +++ b/classes/efl.bbclass @@ -11,15 +11,23 @@ PE = "2" ARM_INSTRUCTION_SET = "arm" -AUTOTOOLS_STAGE_PKGCONFIG = "1" -# do NOT inherit pkgconfig here, see note in autotools_stage_all inherit autotools -do_stage() { - autotools_stage_all +# evas-native looks at this var, so keep it +AUTOTOOLS_STAGE_PKGCONFIG = "1" + +do_configure_prepend() { + touch config.rpath } -PACKAGES = "${PN}-dbg ${PN} ${PN}-themes ${PN}-dev ${PN}-tests" +do_install_prepend () { + for i in `find ${S}/ -name "*.pc" -type f` ; do \ + sed -i -e 's:-L${STAGING_LIBDIR}::g' -e 's:-I${STAGING_INCDIR}::g' $i + done +} + +# This construction is stupid, someone with more E knowledge should change it to =+ or something +PACKAGES = "${PN}-dbg ${PN} ${PN}-themes ${PN}-dev ${PN}-doc ${PN}-tests ${PN}-static" FILES_${PN} = "${libdir}/*.so.*" @@ -35,12 +43,15 @@ FILES_${PN}-themes = "${datadir}/${PN}/themes \ FILES_${PN}-dev += "${bindir}/${PN}-config \ ${libdir}/pkgconfig/* \ ${libdir}/lib*.la \ - ${libdir}/lib*.a \ ${libdir}/*.so \ - ${libdir}/${PN}/*.a \ ${libdir}/${PN}/*.la \ - ${libdir}/${PN}/*/*.a \ - ${libdir}/${PN}/*/*.la" + ${libdir}/${PN}/*/*.la \ + ${datadir}/${PN}/edje_externals \ +" + +FILES_${PN}-static += "${libdir}/${PN}/*.a \ + ${libdir}/${PN}/*/*.a \ +" FILES_${PN}-dbg += "${libdir}/${PN}/.debug \ ${libdir}/${PN}/*/.debug"