summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/gnome/gobject-introspection_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-gnome/gnome/gobject-introspection_git.bb')
-rw-r--r--meta/recipes-gnome/gnome/gobject-introspection_git.bb32
1 files changed, 18 insertions, 14 deletions
diff --git a/meta/recipes-gnome/gnome/gobject-introspection_git.bb b/meta/recipes-gnome/gnome/gobject-introspection_git.bb
index 5e37255285..83523845d8 100644
--- a/meta/recipes-gnome/gnome/gobject-introspection_git.bb
+++ b/meta/recipes-gnome/gnome/gobject-introspection_git.bb
@@ -1,29 +1,33 @@
1SRC_URI = "git://git.gnome.org/gobject-introspection;protocol=git \ 1# NOTE: WIP! This recipe does not cross-compile atm., only -native
2 file://configure.patch \ 2DEPENDS = "glib-2.0 libffi python-native gobject-introspection-native"
3 file://pathfix.patch" 3DEPENDS_virtclass-native = "glib-2.0-native libffi-native python-native bison-native flex-native"
4BBCLASSEXTEND = "native"
4 5
5SRC_URI_virtclass-native = "git://git.gnome.org/gobject-introspection;protocol=git \ 6SRC_URI = "git://git.gnome.org/gobject-introspection;protocol=git \
6 file://pathfix.patch" 7 file://use-usr-bin-env-for-python.patch \
8"
7 9
8LICENSE = "GPLv2+ & LGPLv2+" 10LICENSE = "GPLv2+ & LGPLv2+"
9LIC_FILES_CHKSUM = "file://COPYING.tools;md5=94d55d512a9ba36caa9b7df079bae19f \ 11LIC_FILES_CHKSUM = "file://COPYING.tools;md5=94d55d512a9ba36caa9b7df079bae19f \
10 file://COPYING.lib;md5=3bf50002aefd002f49e7bb854063f7e7" 12 file://COPYING.lib;md5=3bf50002aefd002f49e7bb854063f7e7"
11 13
12SRCREV = "efa7266bcf78478ce62e8dd778a4f0417bfd4d15" 14SRCREV = "8d64bc23d2b837421ecf9c7b0e4b8d5d95ca0d21"
13PV = "0.10.8+git${SRCPV}" 15PV = "1.29.0+gitr${SRCPV}"
14PR = "r4" 16DEFAULT_PREFERENCE = "-1"
15 17
16S = "${WORKDIR}/git" 18S = "${WORKDIR}/git"
17 19
18DEPENDS = "libffi python-native gobject-introspection-native"
19DEPENDS_virtclass-native = "libffi-native python-native bison-native flex-native"
20
21inherit autotools 20inherit autotools
22 21
23TARGET_CFLAGS += "-I${STAGING_INCDIR_NATIVE}/python2.5" 22BBCLASSEXTEND = "native"
24 23
25do_configure_prepend () { 24do_configure_prepend () {
26 echo "EXTRA_DIST = " > ${S}/gtk-doc.make 25 echo "EXTRA_DIST = " > ${S}/gtk-doc.make
27} 26}
28 27
29BBCLASSEXTEND = "native" 28EXTRA_OECONF = "\
29 --disable-gtk-doc \
30 --disable-gtk-doc-html \
31 --disable-gtk-doc-pdf \
32 --disable-tests \
33"