increase dvbapp PR.
[vuplus_openembedded] / recipes / libiconv / libiconv.inc
1 DESCRIPTION = "GNU libiconv - libiconv is for you if your application needs to support \
2 multiple character encodings, but that support lacks from your system."
3 HOMEPAGE = "http://www.gnu.org/software/libiconv"
4 SECTION = "libs"
5 PRIORITY = "optional"
6 NOTES = "Needs to be stripped down to: ascii iso8859-1 eucjp iso-2022jp gb utf8"
7
8 SRC_URI = "ftp://ftp.gnu.org/pub/gnu/libiconv/libiconv-${PV}.tar.gz \
9            file://autotools.patch;patch=1 \
10            file://preload.patch;patch=1"
11
12 S = "${WORKDIR}/libiconv-${PV}"
13
14 inherit autotools
15
16 EXTRA_OECONF += "--enable-shared --enable-static --enable-relocatable --disable-rpath"
17
18 do_configure_append () {
19                 # Fix stupid libtool... handling. rpath handling can't be disabled and the Makefile's can't be regenerated..
20         # (GNU sed required)
21         sed -i s/^hardcode_libdir_flag_spec/#hardcode_libdir_flag_spec/ ${S}/*-libtool
22 }
23
24 do_stage () {
25         autotools_stage_all
26 }