diff options
Diffstat (limited to 'meta/packages/gettext/gettext_0.14.1.bb')
-rw-r--r-- | meta/packages/gettext/gettext_0.14.1.bb | 10 |
1 files changed, 9 insertions, 1 deletions
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." | |||
2 | HOMEPAGE = "http://www.gnu.org/software/gettext/gettext.html" | 2 | HOMEPAGE = "http://www.gnu.org/software/gettext/gettext.html" |
3 | SECTION = "libs" | 3 | SECTION = "libs" |
4 | LICENSE = "GPL" | 4 | LICENSE = "GPL" |
5 | PR = "r8" | 5 | PR = "r10" |
6 | PROVIDES = "virtual/libintl" | 6 | PROVIDES = "virtual/libintl" |
7 | 7 | ||
8 | SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \ | 8 | SRC_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 | ||
31 | do_stage () { | 32 | do_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 | } |