summaryrefslogtreecommitdiffstats
path: root/meta/packages/gettext
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-04-15 14:23:12 +0000
committerRichard Purdie <richard@openedhand.com>2008-04-15 14:23:12 +0000
commita8ed0612613bc284cdf097ac211b9022738c8ae1 (patch)
treeb9293ee5f64a3c1d236af0e5241b074f828a8ce1 /meta/packages/gettext
parentfe074c7bc5c971f601275b961957e9fdf4af1fc3 (diff)
downloadpoky-a8ed0612613bc284cdf097ac211b9022738c8ae1.tar.gz
gettext: Backport updated macros from gettext 0.17 to avoid conflicts with libtool
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4272 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gettext')
-rw-r--r--meta/packages/gettext/gettext-native_0.14.1.bb7
-rw-r--r--meta/packages/gettext/gettext_0.14.1.bb10
2 files changed, 16 insertions, 1 deletions
diff --git a/meta/packages/gettext/gettext-native_0.14.1.bb b/meta/packages/gettext/gettext-native_0.14.1.bb
index 6203b1f9d7..37549dbdad 100644
--- a/meta/packages/gettext/gettext-native_0.14.1.bb
+++ b/meta/packages/gettext/gettext-native_0.14.1.bb
@@ -50,4 +50,11 @@ do_stage_append() {
50 fi 50 fi
51 install -m 0644 $src ${STAGING_DATADIR}/aclocal/$i 51 install -m 0644 $src ${STAGING_DATADIR}/aclocal/$i
52 done 52 done
53
54 # config.rpath is needed by some configure macros and needs to be autoinstalled.
55 # automake will do this but config.rpath needs to be visible to automake
56 for i in `ls -d ${STAGING_DATADIR}/automake*`
57 do
58 cp ${STAGING_DATADIR}/gettext/config.rpath $i
59 done
53} 60}
diff --git a/meta/packages/gettext/gettext_0.14.1.bb b/meta/packages/gettext/gettext_0.14.1.bb
index 7bc011f494..5ad2059615 100644
--- a/meta/packages/gettext/gettext_0.14.1.bb
+++ b/meta/packages/gettext/gettext_0.14.1.bb
@@ -2,12 +2,13 @@ DESCRIPTION = "The GNU internationalization library."
2HOMEPAGE = "http://www.gnu.org/software/gettext/gettext.html" 2HOMEPAGE = "http://www.gnu.org/software/gettext/gettext.html"
3SECTION = "libs" 3SECTION = "libs"
4LICENSE = "GPL" 4LICENSE = "GPL"
5PR = "r8" 5PR = "r10"
6PROVIDES = "virtual/libintl" 6PROVIDES = "virtual/libintl"
7 7
8SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \ 8SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \
9 file://gettext-vpath.patch;patch=1;pnum=1 \ 9 file://gettext-vpath.patch;patch=1;pnum=1 \
10 file://fixchicken.patch;patch=1;pnum=1 \ 10 file://fixchicken.patch;patch=1;pnum=1 \
11 file://linklib_from_0.17.patch;patch=1 \
11 file://getline.m4.patch;patch=1 \ 12 file://getline.m4.patch;patch=1 \
12 file://disable_java.patch;patch=1" 13 file://disable_java.patch;patch=1"
13 14
@@ -30,4 +31,11 @@ do_configure_prepend() {
30 31
31do_stage () { 32do_stage () {
32 autotools_stage_all 33 autotools_stage_all
34
35 # config.rpath is needed by some configure macros and needs to be autoinstalled.
36 # automake will do this but config.rpath needs to be visible to automake
37 for i in `ls -d ${STAGING_DATADIR}/automake*`
38 do
39 cp ${STAGING_DATADIR}/gettext/config.rpath $i
40 done
33} 41}