summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/gettext/gettext-minimal-native_0.18.3.2.bb
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2014-03-12 09:57:48 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-17 14:01:43 +0000
commite8476a9d19dba7a1a6c5a558a89f2c9f89d39ae2 (patch)
tree85079d18dcfd713355cf065720f2e5ce0731cf59 /meta/recipes-core/gettext/gettext-minimal-native_0.18.3.2.bb
parentbb9042a991c60522e0d00963847d6f7b58b53e05 (diff)
downloadpoky-e8476a9d19dba7a1a6c5a558a89f2c9f89d39ae2.tar.gz
gettext: upgrade from 0.18.3.1 to 0.18.3.2
Upgrade gettext from 0.18.3.1 to 0.18.3.2. (From OE-Core rev: b681d264ab2f721c537bfa87cc2ddbbbf3f8c1a2) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/gettext/gettext-minimal-native_0.18.3.2.bb')
-rw-r--r--meta/recipes-core/gettext/gettext-minimal-native_0.18.3.2.bb32
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/recipes-core/gettext/gettext-minimal-native_0.18.3.2.bb b/meta/recipes-core/gettext/gettext-minimal-native_0.18.3.2.bb
new file mode 100644
index 0000000000..2b43b97022
--- /dev/null
+++ b/meta/recipes-core/gettext/gettext-minimal-native_0.18.3.2.bb
@@ -0,0 +1,32 @@
1SUMMARY = "Minimal gettext for supporting native autoconf/automake"
2DESCRIPTION = "Contains the m4 macros sufficient to support building \
3autoconf/automake. This provides a significant build time speedup by \
4the removal of gettext-native from most dependency chains (now only \
5needed for gettext for the target)."
6SRC_URI = "file://aclocal.tgz \
7 file://config.rpath \
8 file://Makefile.in.in \
9 file://remove-potcdate.sin \
10 file://COPYING \
11 file://iconv-m4-remove-the-test-to-convert-euc-jp.patch \
12"
13
14INHIBIT_DEFAULT_DEPS = "1"
15INHIBIT_AUTOTOOLS_DEPS = "1"
16
17LICENSE = "FSF-Unlimited"
18LIC_FILES_CHKSUM = "file://COPYING;md5=0854da868a929923087141d9d7aba7d5"
19
20inherit native
21
22
23S = "${WORKDIR}"
24
25do_install () {
26 install -d ${D}${datadir}/aclocal/
27 cp ${WORKDIR}/*.m4 ${D}${datadir}/aclocal/
28 install -d ${D}${datadir}/gettext/po/
29 cp ${WORKDIR}/config.rpath ${D}${datadir}/gettext/
30 cp ${WORKDIR}/Makefile.in.in ${D}${datadir}/gettext/po/
31 cp ${WORKDIR}/remove-potcdate.sin ${D}${datadir}/gettext/po/
32}