diff options
author | Koen Kooi <koen@openembedded.org> | 2010-03-25 11:41:26 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-03-25 17:19:35 +0100 |
commit | 67daba1097450f8a00e560457d4da1e976a9a2e0 (patch) | |
tree | 80b05c4041ea3621f0aa91cca7ceffc0f2490693 /recipes/glib-2.0/glib-2.0_2.23.6.bb | |
parent | 1ece2a382ba3f05747163ebe6bdf0248c4fd3e77 (diff) |
glib-2.0: add 2.23.6
* thumb patch needs rediffing
Diffstat (limited to 'recipes/glib-2.0/glib-2.0_2.23.6.bb')
-rw-r--r-- | recipes/glib-2.0/glib-2.0_2.23.6.bb | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/recipes/glib-2.0/glib-2.0_2.23.6.bb b/recipes/glib-2.0/glib-2.0_2.23.6.bb new file mode 100644 index 0000000000..d1e21a461f --- /dev/null +++ b/recipes/glib-2.0/glib-2.0_2.23.6.bb @@ -0,0 +1,74 @@ +DESCRIPTION = "GLib is a general-purpose utility library, \ +which provides many useful data types, macros, \ +type conversions, string utilities, file utilities, a main \ +loop abstraction, and so on. It works on many \ +UNIX-like platforms, Windows, OS/2 and BeOS." +LICENSE = "LGPL" +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "glib-2.0-native gtk-doc virtual/libiconv virtual/libintl" + +SRC_URI = "\ + http://ftp.gnome.org/pub/GNOME/sources/glib/2.23/glib-${PV}.tar.bz2;name=archive \ + file://glibconfig-sysdefs.h \ + file://configure-libtool.patch;patch=1 \ + file://g_once_init_enter.patch;patch=1 \ +" +SRC_URI[archive.md5sum] = "72e6eadc16d7022376ecef12c6fe905e" +SRC_URI[archive.sha256sum] = "f91840e27ad4cd48e655a6babed7e2024f86814f94961da88ca2adba447c6e77" + +# This needs to get rediffed for this glib-2.0 version +#SRC_URI_append_arm = " file://atomic-thumb.patch;patch=1" + +SRC_URI_append_armv6 = " file://gatomic_armv6.patch;patch=1" +SRC_URI_append_armv7a = " file://gatomic_armv6.patch;patch=1" + +inherit autotools gettext + +S = "${WORKDIR}/glib-${PV}" + +EXTRA_OECONF = "--disable-debug " + +# Add and entry for your favourite arch if your (g)libc has a sane printf +EXTRA_OECONF_append_glibc_arm = " --enable-included-printf=no " + +do_configure_prepend () { + install -m 0644 ${WORKDIR}/glibconfig-sysdefs.h . +} + +do_install_append() { + sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g ${D}${bindir}/glib-mkenums || true +} + +DEPENDS_virtclass-native = "gettext-native gtk-doc-native \ + pkgconfig-native" +EXTRA_OECONF_virtclass-native = "" + +do_configure_prepend_virtclass-native() { + if [ -e ${S}/${TARGET_SYS}-libtool ] ; then + echo "${TARGET_SYS}-libtool already present" + else + cp ${STAGING_BINDIR}/${TARGET_SYS}-libtool ${S} + fi + +} + +BBCLASSEXTEND = "native" + +PACKAGES =+ "gobject-2.0 gmodule-2.0 gthread-2.0 gio-2.0 glib-2.0-utils " +LEAD_SONAME = "libglib-2.0.*" +FILES_glib-2.0-utils = "${bindir}/*" +FILES_${PN} = "${libdir}/lib*so.* ${libdir}/gio/modules/*.so" +FILES_${PN}-dev += "${libdir}/glib-2.0 ${datadir}/glib-2.0 ${libdir}/gio/modules/*.la" +FILES_${PN}-dbg += "${libdir}/gio/modules/.debug" +FILES_gmodule-2.0 = "${libdir}/libgmodule-2.0.so.*" +FILES_gobject-2.0 = "${libdir}/libgobject-2.0.so.*" +FILES_gio-2.0 = "${libdir}/libgio-2.0.so.*" +FILES_gthread-2.0 = "${libdir}/libgthread-2.0.so.*" + +# Let various glib components end up in glib package +# for compatibility (with binary packages from Maemo). +FILES_gthread-2.0_chinook-compat = "" +FILES_gmodule-2.0_chinook-compat = "" +FILES_gobject-2.0_chinook-compat = "" +FILES_gio-2.0_chinook-compat = "" |