diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-16 01:17:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-16 01:17:41 +0000 |
commit | d445d9dbd0d7550a2ccc12e99484815b1cd07da0 (patch) | |
tree | 1b22a18f65c05c8009902efbd8dc24ebcd7daaa1 /gettext/gettext_0.14.1.oe | |
parent | 8c3493e9d1bd57e174128085a345a82084e7f96c (diff) |
Merge openembedded@openembedded.bkbits.net:packages-devel
into handhelds.org:/home/kergoth/code/packages
2004/11/15 19:11:27-06:00 handhelds.org!kergoth
Add the necessary virtual/libintl and virtual/libiconv PROVIDES to the uclibc and glibc builds.
2004/11/15 19:10:29-06:00 handhelds.org!kergoth
Stage the target gettext build, and make it PROVIDES virtual/libintl.
2004/11/15 19:09:34-06:00 handhelds.org!kergoth
Unbork the libiconv builds a bit, and make the target libiconv PROVIDES virtual/libiconv.
2004/11/12 12:03:48-06:00 handhelds.org!kergoth
Merge openembedded@openembedded.bkbits.net:packages-devel
into handhelds.org:/home/kergoth/code/packages
2004/11/11 14:12:30-06:00 handhelds.org!kergoth
Merge openembedded@openembedded.bkbits.net:packages-devel
into handhelds.org:/home/kergoth/code/packages
2004/11/11 14:06:04-06:00 handhelds.org!kergoth
Enhance source distribution oeclass to support | seperated licenses (if any is distributable, that component is), and space seperated (all must be distributable).
BKrev: 419955354rVOOt21Zfjv5KsGqY457w
Diffstat (limited to 'gettext/gettext_0.14.1.oe')
-rw-r--r-- | gettext/gettext_0.14.1.oe | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gettext/gettext_0.14.1.oe b/gettext/gettext_0.14.1.oe index 7e42817670..481162ea91 100644 --- a/gettext/gettext_0.14.1.oe +++ b/gettext/gettext_0.14.1.oe @@ -1,7 +1,8 @@ DESCRIPTION = "The GNU internationalization library." SECTION = "libs" LICENSE = "GPL" -PR = "r1" +PR = "r2" +PROVIDES = "virtual/libintl" SRC_URI = "${GNU_MIRROR}/gettext/gettext-${PV}.tar.gz \ file://gettext-vpath.patch;patch=1;pnum=1 \ @@ -17,3 +18,12 @@ do_configure_prepend() { rm -f ${S}/config/m4/libtool.m4 install -m 0644 ${STAGING_DATADIR}/aclocal/libtool.m4 ${S}/config/m4/ } + +do_stage () { + autotools_stage_includes + oe_libinstall -so -C gettext-tools/lib libgettextlib ${STAGING_LIBDIR}/ + oe_libinstall -so -C gettext-tools/src libgettextpo ${STAGING_LIBDIR}/ + oe_libinstall -so -C gettext-tools/src libgettextsrc ${STAGING_LIBDIR}/ + oe_libinstall -so -C gettext-tools/intl libintl ${STAGING_LIBDIR}/ + oe_libinstall -so -C gettext-runtime/lib libasprintf ${STAGING_LIBDIR}/ +} |