From 2e040618978b93d0add0e7e115c17545685c9dfc Mon Sep 17 00:00:00 2001 From: Nitin A Kamble Date: Mon, 4 Oct 2010 13:29:44 -0700 Subject: cross-localedef-native: tool for cross generation of locales Signed-off-by: Nitin A Kamble --- .../eglibc/cross-localedef-native_2.12.bb | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 meta/recipes-core/eglibc/cross-localedef-native_2.12.bb (limited to 'meta/recipes-core') 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 index 0000000000..a12779d3a1 --- /dev/null +++ b/meta/recipes-core/eglibc/cross-localedef-native_2.12.bb @@ -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 +} -- cgit v1.2.3-54-g00ecf