From: Martin Jansa Date: Fri, 24 Dec 2010 10:10:21 +0000 (+0100) Subject: gdbus-binding-tool: new recipe X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f510a08223fddf04ab66ae6282a63927e2f2423;p=openembedded.git gdbus-binding-tool: new recipe Signed-off-by: Martin Jansa --- diff --git a/recipes/gdbus-binding-tool/gdbus-binding-tool_git.bb b/recipes/gdbus-binding-tool/gdbus-binding-tool_git.bb new file mode 100644 index 0000000000..c7b3c1c845 --- /dev/null +++ b/recipes/gdbus-binding-tool/gdbus-binding-tool_git.bb @@ -0,0 +1,26 @@ +DESCRIPTION = "gdbus-binding-tool is used to generate C code for interacting with remote objects using D-Bus." +DEPENDS = "glib-2.0 gdbus-binding-tool-native" +DEPENDS_virtclass-native = "glib-2.0-native" + +inherit autotools pkgconfig + +SRC_URI = "git://anongit.freedesktop.org/~david/${BPN};protocol=git;branch=master" +SRCREV = "229fd9adbb6bd9d824b38a3bd092229016540f41" +PV = "0.1+gitr${SRCPV}" +S = "${WORKDIR}/git" + +do_configure_prepend() { + # missing ${topdir}/gtk-doc.make and --disable-gtk-doc* is not enough + sed -i '/^doc\/Makefile/d' ${S}/configure.ac + sed -i 's/SUBDIRS = src doc/SUBDIRS = src/g' ${S}/Makefile.am + + # cannot execute target binary, so use staged native + sed -i "s#\$(top_builddir)/src/gdbus-codegen#${STAGING_BINDIR_NATIVE}/gdbus-codegen#g" ${S}/src/Makefile.am +} +do_configure_prepend_virtclass-native() { + # missing ${topdir}/gtk-doc.make and --disable-gtk-doc* is not enough + sed -i '/^doc\/Makefile/d' ${S}/configure.ac + sed -i 's/SUBDIRS = src doc/SUBDIRS = src/g' ${S}/Makefile.am +} + +BBCLASSEXTEND = "native"