blob: c8152104c32a0589b718e9c7cb1cc8d72584d19d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
}
|