diff options
author | Ross Burton <ross@openedhand.com> | 2006-12-12 16:57:06 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2006-12-12 16:57:06 +0000 |
commit | 8c7ebc22f0302e640373a3fae456cfad55504298 (patch) | |
tree | a0a8f16d4ac304618d83ad056f1039a1c4644e6a /meta/packages/glib-2.0/glib-2.0-native_2.12.4.bb | |
parent | 46287e2185ab1b4cda0f986f83db709969c068ac (diff) | |
download | poky-8c7ebc22f0302e640373a3fae456cfad55504298.tar.gz |
Upgrade to glib 2.12.4
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1023 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/glib-2.0/glib-2.0-native_2.12.4.bb')
-rw-r--r-- | meta/packages/glib-2.0/glib-2.0-native_2.12.4.bb | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/meta/packages/glib-2.0/glib-2.0-native_2.12.4.bb b/meta/packages/glib-2.0/glib-2.0-native_2.12.4.bb new file mode 100644 index 0000000000..065f5bc3e7 --- /dev/null +++ b/meta/packages/glib-2.0/glib-2.0-native_2.12.4.bb | |||
@@ -0,0 +1,49 @@ | |||
1 | DESCRIPTION = "GLib is a general-purpose utility library, \ | ||
2 | which provides many useful data types, macros, \ | ||
3 | type conversions, string utilities, file utilities, a main \ | ||
4 | loop abstraction, and so on. It works on many \ | ||
5 | UNIX-like platforms, Windows, OS/2 and BeOS." | ||
6 | LICENSE = "LGPL" | ||
7 | SECTION = "libs" | ||
8 | PRIORITY = "optional" | ||
9 | DEPENDS += "gtk-doc-native" | ||
10 | PR="r1" | ||
11 | |||
12 | EXTRA_OECONF = "--disable-debug" | ||
13 | |||
14 | SRC_URI = "http://download.gnome.org/sources/glib/2.12/glib-${PV}.tar.bz2 \ | ||
15 | file://glib-gettextize-dir.patch;patch=1 \ | ||
16 | file://glibconfig-sysdefs.h" | ||
17 | |||
18 | S = "${WORKDIR}/glib-${PV}" | ||
19 | |||
20 | inherit autotools pkgconfig native gettext | ||
21 | |||
22 | acpaths = "" | ||
23 | do_configure_prepend () { | ||
24 | install -m 0644 ${WORKDIR}/glibconfig-sysdefs.h . | ||
25 | } | ||
26 | |||
27 | do_stage () { | ||
28 | install -m 0755 gobject/glib-mkenums ${STAGING_BINDIR}/ | ||
29 | install -m 0755 gobject/.libs/glib-genmarshal ${STAGING_BINDIR}/ | ||
30 | install -m 0755 glib-gettextize ${STAGING_BINDIR}/ | ||
31 | oe_libinstall -so -C glib libglib-2.0 ${STAGING_LIBDIR} | ||
32 | oe_libinstall -so -C gmodule libgmodule-2.0 ${STAGING_LIBDIR} | ||
33 | oe_libinstall -so -C gthread libgthread-2.0 ${STAGING_LIBDIR} | ||
34 | oe_libinstall -so -C gobject libgobject-2.0 ${STAGING_LIBDIR} | ||
35 | autotools_stage_includes | ||
36 | install -d ${STAGING_INCDIR}/glib-2.0/glib | ||
37 | install -m 0755 ${S}/glibconfig.h ${STAGING_INCDIR}/glib-2.0/glibconfig.h | ||
38 | install -d ${STAGING_DATADIR}/aclocal | ||
39 | install -m 0644 ${S}/m4macros/glib-2.0.m4 ${STAGING_DATADIR}/aclocal/glib-2.0.m4 | ||
40 | install -m 0644 ${S}/m4macros/glib-gettext.m4 ${STAGING_DATADIR}/aclocal/glib-gettext.m4 | ||
41 | install -d ${STAGING_DATADIR}/glib-2.0/gettext/po | ||
42 | install -m 0755 mkinstalldirs ${STAGING_DATADIR}/glib-2.0/gettext/ | ||
43 | install -m 0644 po/Makefile.in.in ${STAGING_DATADIR}/glib-2.0/gettext/po/ | ||
44 | } | ||
45 | |||
46 | do_install () { | ||
47 | : | ||
48 | } | ||
49 | |||