diff options
| author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-11-15 12:58:47 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-16 17:32:46 +0000 |
| commit | d4a31b7ce9077ef90665480a1a4a30a2ba68707d (patch) | |
| tree | 8b01ffdbc378b562a98afd2e97b82eb36f6df1d4 /meta/recipes-gnome/gnome/gobject-introspection_git.bb | |
| parent | 0f9c30468a4793589961e59cc07206060cacd832 (diff) | |
| download | poky-d4a31b7ce9077ef90665480a1a4a30a2ba68707d.tar.gz | |
gobject-introspection: update frome meta-oe
OE-Core uses very old version of gobject-introspection. The recipe says
0.10.8, but in reality it's GOBJECT_INTROSPECTION_0_6_3-41-gefa7266.
That version e.g. doesn't compile with python 2.7 (default in some
versions), etc.
(From OE-Core rev: 04e4b3757b7ee6ed0a11e9feaee7c971a46f88ee)
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gnome/gobject-introspection_git.bb')
| -rw-r--r-- | meta/recipes-gnome/gnome/gobject-introspection_git.bb | 32 |
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 @@ | |||
| 1 | SRC_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 \ | 2 | DEPENDS = "glib-2.0 libffi python-native gobject-introspection-native" |
| 3 | file://pathfix.patch" | 3 | DEPENDS_virtclass-native = "glib-2.0-native libffi-native python-native bison-native flex-native" |
| 4 | BBCLASSEXTEND = "native" | ||
| 4 | 5 | ||
| 5 | SRC_URI_virtclass-native = "git://git.gnome.org/gobject-introspection;protocol=git \ | 6 | SRC_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 | ||
| 8 | LICENSE = "GPLv2+ & LGPLv2+" | 10 | LICENSE = "GPLv2+ & LGPLv2+" |
| 9 | LIC_FILES_CHKSUM = "file://COPYING.tools;md5=94d55d512a9ba36caa9b7df079bae19f \ | 11 | LIC_FILES_CHKSUM = "file://COPYING.tools;md5=94d55d512a9ba36caa9b7df079bae19f \ |
| 10 | file://COPYING.lib;md5=3bf50002aefd002f49e7bb854063f7e7" | 12 | file://COPYING.lib;md5=3bf50002aefd002f49e7bb854063f7e7" |
| 11 | 13 | ||
| 12 | SRCREV = "efa7266bcf78478ce62e8dd778a4f0417bfd4d15" | 14 | SRCREV = "8d64bc23d2b837421ecf9c7b0e4b8d5d95ca0d21" |
| 13 | PV = "0.10.8+git${SRCPV}" | 15 | PV = "1.29.0+gitr${SRCPV}" |
| 14 | PR = "r4" | 16 | DEFAULT_PREFERENCE = "-1" |
| 15 | 17 | ||
| 16 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
| 17 | 19 | ||
| 18 | DEPENDS = "libffi python-native gobject-introspection-native" | ||
| 19 | DEPENDS_virtclass-native = "libffi-native python-native bison-native flex-native" | ||
| 20 | |||
| 21 | inherit autotools | 20 | inherit autotools |
| 22 | 21 | ||
| 23 | TARGET_CFLAGS += "-I${STAGING_INCDIR_NATIVE}/python2.5" | 22 | BBCLASSEXTEND = "native" |
| 24 | 23 | ||
| 25 | do_configure_prepend () { | 24 | do_configure_prepend () { |
| 26 | echo "EXTRA_DIST = " > ${S}/gtk-doc.make | 25 | echo "EXTRA_DIST = " > ${S}/gtk-doc.make |
| 27 | } | 26 | } |
| 28 | 27 | ||
| 29 | BBCLASSEXTEND = "native" | 28 | EXTRA_OECONF = "\ |
| 29 | --disable-gtk-doc \ | ||
| 30 | --disable-gtk-doc-html \ | ||
| 31 | --disable-gtk-doc-pdf \ | ||
| 32 | --disable-tests \ | ||
| 33 | " | ||
