diff options
-rw-r--r-- | openembedded/packages/glib-2.0/glib-2.0-native-2.10.3/glib-gettextize-dir.patch | 11 | ||||
-rw-r--r-- | openembedded/packages/glib-2.0/glib-2.0-native_2.10.3.bb | 53 |
2 files changed, 64 insertions, 0 deletions
diff --git a/openembedded/packages/glib-2.0/glib-2.0-native-2.10.3/glib-gettextize-dir.patch b/openembedded/packages/glib-2.0/glib-2.0-native-2.10.3/glib-gettextize-dir.patch new file mode 100644 index 0000000000..efe3325578 --- /dev/null +++ b/openembedded/packages/glib-2.0/glib-2.0-native-2.10.3/glib-gettextize-dir.patch | |||
@@ -0,0 +1,11 @@ | |||
1 | --- glib-2.10.3/glib-gettextize.in.old 2006-06-21 12:46:45.000000000 +0100 | ||
2 | +++ glib-2.10.3/glib-gettextize.in 2006-06-21 12:48:14.000000000 +0100 | ||
3 | @@ -49,7 +49,7 @@ | ||
4 | ;; | ||
5 | esac | ||
6 | |||
7 | -gettext_dir=$prefix/share/glib-2.0/gettext | ||
8 | +gettext_dir=@datadir@/glib-2.0/gettext | ||
9 | |||
10 | while test $# -gt 0; do | ||
11 | case "$1" in | ||
diff --git a/openembedded/packages/glib-2.0/glib-2.0-native_2.10.3.bb b/openembedded/packages/glib-2.0/glib-2.0-native_2.10.3.bb new file mode 100644 index 0000000000..d0a442eeef --- /dev/null +++ b/openembedded/packages/glib-2.0/glib-2.0-native_2.10.3.bb | |||
@@ -0,0 +1,53 @@ | |||
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 | |||
11 | EXTRA_OECONF = "--disable-debug" | ||
12 | |||
13 | SRC_URI = "http://download.gnome.org/sources/glib/2.10//glib-${PV}.tar.bz2 \ | ||
14 | file://glib-gettextize-dir.patch;patch=1 \ | ||
15 | file://glibconfig-sysdefs.h" | ||
16 | |||
17 | S = "${WORKDIR}/glib-${PV}" | ||
18 | |||
19 | inherit autotools pkgconfig native gettext | ||
20 | |||
21 | python () { | ||
22 | if bb.data.getVar("USE_NLS", d, 1) == "no": | ||
23 | raise bb.parse.SkipPackage("${PN} requires native language support.") | ||
24 | } | ||
25 | |||
26 | acpaths = "" | ||
27 | do_configure_prepend () { | ||
28 | install -m 0644 ${WORKDIR}/glibconfig-sysdefs.h . | ||
29 | } | ||
30 | |||
31 | do_stage () { | ||
32 | install -m 0755 gobject/glib-mkenums ${STAGING_BINDIR}/ | ||
33 | install -m 0755 gobject/.libs/glib-genmarshal ${STAGING_BINDIR}/ | ||
34 | install -m 0755 glib-gettextize ${STAGING_BINDIR}/ | ||
35 | oe_libinstall -so -C glib libglib-2.0 ${STAGING_LIBDIR} | ||
36 | oe_libinstall -so -C gmodule libgmodule-2.0 ${STAGING_LIBDIR} | ||
37 | oe_libinstall -so -C gthread libgthread-2.0 ${STAGING_LIBDIR} | ||
38 | oe_libinstall -so -C gobject libgobject-2.0 ${STAGING_LIBDIR} | ||
39 | autotools_stage_includes | ||
40 | install -d ${STAGING_INCDIR}/glib-2.0/glib | ||
41 | install -m 0755 ${S}/glibconfig.h ${STAGING_INCDIR}/glib-2.0/glibconfig.h | ||
42 | install -d ${STAGING_DATADIR}/aclocal | ||
43 | install -m 0644 ${S}/m4macros/glib-2.0.m4 ${STAGING_DATADIR}/aclocal/glib-2.0.m4 | ||
44 | install -m 0644 ${S}/m4macros/glib-gettext.m4 ${STAGING_DATADIR}/aclocal/glib-gettext.m4 | ||
45 | install -d ${STAGING_DATADIR}/glib-2.0/gettext/po | ||
46 | install -m 0755 mkinstalldirs ${STAGING_DATADIR}/glib-2.0/gettext/ | ||
47 | install -m 0644 po/Makefile.in.in ${STAGING_DATADIR}/glib-2.0/gettext/po/ | ||
48 | } | ||
49 | |||
50 | do_install () { | ||
51 | : | ||
52 | } | ||
53 | |||