aboutsummaryrefslogtreecommitdiffstats
path: root/gettext
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-16 01:17:41 +0000
committerChris Larson <clarson@kergoth.com>2004-11-16 01:17:41 +0000
commitd445d9dbd0d7550a2ccc12e99484815b1cd07da0 (patch)
tree1b22a18f65c05c8009902efbd8dc24ebcd7daaa1 /gettext
parent8c3493e9d1bd57e174128085a345a82084e7f96c (diff)
downloadopenembedded-d445d9dbd0d7550a2ccc12e99484815b1cd07da0.tar.gz
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')
-rw-r--r--gettext/gettext-native_0.14.1.oe1
-rw-r--r--gettext/gettext_0.14.1.oe12
2 files changed, 12 insertions, 1 deletions
diff --git a/gettext/gettext-native_0.14.1.oe b/gettext/gettext-native_0.14.1.oe
index fce2df7c10..f25f431e48 100644
--- a/gettext/gettext-native_0.14.1.oe
+++ b/gettext/gettext-native_0.14.1.oe
@@ -2,6 +2,7 @@ include gettext_${PV}.oe
S = "${WORKDIR}/gettext-${PV}"
FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/gettext-${PV}"
inherit native
+PROVIDES = ""
M4 = "\
lib-ld.m4 \
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}/
+}