aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/libiconv/libiconv.inc
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/libiconv/libiconv.inc')
-rw-r--r--recipes/libiconv/libiconv.inc27
1 files changed, 27 insertions, 0 deletions
diff --git a/recipes/libiconv/libiconv.inc b/recipes/libiconv/libiconv.inc
new file mode 100644
index 0000000000..c8152104c3
--- /dev/null
+++ b/recipes/libiconv/libiconv.inc
@@ -0,0 +1,27 @@
+DESCRIPTION = "GNU libiconv - libiconv is for you if your application needs to support \
+multiple character encodings, but that support lacks from your system."
+HOMEPAGE = "http://www.gnu.org/software/libiconv"
+SECTION = "libs"
+PRIORITY = "optional"
+NOTES = "Needs to be stripped down to: ascii iso8859-1 eucjp iso-2022jp gb utf8"
+LICENSE = "LGPL"
+
+SRC_URI = "ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-${PV}.tar.gz \
+ file://autotools.patch;patch=1 \
+ file://preload.patch;patch=1"
+
+S = "${WORKDIR}/libiconv-${PV}"
+
+inherit autotools
+
+EXTRA_OECONF += "--enable-shared --enable-static --enable-relocatable --disable-rpath"
+
+do_configure_append () {
+ # Fix stupid libtool... handling. rpath handling can't be disabled and the Makefile's can't be regenerated..
+ # (GNU sed required)
+ sed -i s/^hardcode_libdir_flag_spec/#hardcode_libdir_flag_spec/ ${S}/*-libtool
+}
+
+do_stage () {
+ autotools_stage_all
+}