cross-localedef-native: tool for cross generation of locales
authorNitin A Kamble <nitin.a.kamble@intel.com>
Mon, 4 Oct 2010 20:29:44 +0000 (13:29 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Thu, 7 Oct 2010 21:11:36 +0000 (22:11 +0100)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
meta/recipes-core/eglibc/cross-localedef-native_2.12.bb [new file with mode: 0644]

diff --git a/meta/recipes-core/eglibc/cross-localedef-native_2.12.bb b/meta/recipes-core/eglibc/cross-localedef-native_2.12.bb
new file mode 100644 (file)
index 0000000..a12779d
--- /dev/null
@@ -0,0 +1,37 @@
+DESCRIPTION = "Cross locale generation tool for eglibc"
+HOMEPAGE = "http://www.eglibc.org/home"
+SECTION = "libs"
+PRIORITY = "required"
+LICENSE = "LGPL"
+
+inherit native
+inherit autotools
+
+PR = "r0"
+SRCREV="10809"
+EGLIBC_BRANCH="eglibc-2_12"
+SRC_URI = "svn://www.eglibc.org/svn/branches/;module=${EGLIBC_BRANCH};proto=http "
+S = "${WORKDIR}/${EGLIBC_BRANCH}/localedef"
+
+do_unpack_append() {
+       bb.build.exec_func('do_move_ports', d)
+}
+
+do_move_ports() {
+        if test -d ${WORKDIR}/${EGLIBC_BRANCH}/ports ; then
+           rm -rf ${S}../libc/ports
+           mv ${WORKDIR}/${EGLIBC_BRANCH}/ports ${S}/../libc/
+       fi
+}
+
+EXTRA_OECONF = "--with-glibc=${WORKDIR}/${EGLIBC_BRANCH}/libc"
+
+do_configure () {
+       ./configure ${EXTRA_OECONF}
+}
+
+
+do_install() {
+       install -d ${D}${bindir} 
+       install -m 0755 ${S}/localedef ${D}${bindir}/cross-localedef
+}