diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-16 16:23:39 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-17 13:43:38 +0000 |
commit | 69c5e0992d811d4df6653382d4d8714829ea4309 (patch) | |
tree | e8a5e6cba4d19fe0dc0ac7f723045b160a760b0d /meta/recipes-devtools/libtool/libtool-2.4.6.inc | |
parent | ad8250868f9420d779dc5c4233ffb87e329e4565 (diff) | |
download | poky-69c5e0992d811d4df6653382d4d8714829ea4309.tar.gz |
libtool: 2.4.5 -> 2.4.6
Drop patch merged upstream.
(From OE-Core rev: cd03ef79b50ed42b9d407ee45fc3e3321385281c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libtool/libtool-2.4.6.inc')
-rw-r--r-- | meta/recipes-devtools/libtool/libtool-2.4.6.inc | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libtool/libtool-2.4.6.inc b/meta/recipes-devtools/libtool/libtool-2.4.6.inc new file mode 100644 index 0000000000..ff5abcb239 --- /dev/null +++ b/meta/recipes-devtools/libtool/libtool-2.4.6.inc | |||
@@ -0,0 +1,51 @@ | |||
1 | SUMMARY = "Generic library support script" | ||
2 | DESCRIPTION = "This is GNU libtool, a generic library support script. \ | ||
3 | Libtool hides the complexity of generating special library types \ | ||
4 | (such as shared libraries) behind a consistent interface." | ||
5 | HOMEPAGE = "http://www.gnu.org/software/libtool/libtool.html" | ||
6 | SECTION = "devel" | ||
7 | LICENSE = "GPLv2 & LGPLv2.1" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
9 | file://libltdl/COPYING.LIB;md5=4fbd65380cdd255951079008b364516c " | ||
10 | |||
11 | SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ | ||
12 | file://trailingslash.patch \ | ||
13 | file://rename-with-sysroot.patch \ | ||
14 | file://use-sysroot-in-libpath.patch \ | ||
15 | file://fix-final-rpath.patch \ | ||
16 | file://fix-rpath.patch \ | ||
17 | file://norm-rpath.patch \ | ||
18 | file://dont-depend-on-help2man.patch \ | ||
19 | file://fix-resolve-lt-sysroot.patch \ | ||
20 | file://nohardcodepaths.patch \ | ||
21 | file://unwind-opt-parsing.patch \ | ||
22 | " | ||
23 | |||
24 | SRC_URI[md5sum] = "addf44b646ddb4e3919805aa88fa7c5e" | ||
25 | SRC_URI[sha256sum] = "e3bd4d5d3d025a36c21dd6af7ea818a2afcd4dfc1ea5a17b39d7854bcd0c06e3" | ||
26 | |||
27 | do_compile_prepend () { | ||
28 | # Sometimes this file doesn't get rebuilt, force the issue | ||
29 | rm -f ${S}/build-aux/ltmain.sh | ||
30 | make build-aux/ltmain.sh | ||
31 | ./config.status | ||
32 | } | ||
33 | |||
34 | inherit autotools texinfo | ||
35 | EXTRA_AUTORECONF = "--exclude=libtoolize" | ||
36 | |||
37 | DEPENDS = "libtool-native" | ||
38 | |||
39 | PACKAGES =+ "libltdl libltdl-dev libltdl-dbg libltdl-staticdev" | ||
40 | FILES_${PN} += "${datadir}/aclocal" | ||
41 | FILES_${PN}-dev = "${includedir} ${FILES_SOLIBSDEV} ${libdir}/*.la \ | ||
42 | ${libdir}/*.o ${libdir}/pkgconfig ${datadir}/pkgconfig \ | ||
43 | ${base_libdir}/*.o ${libdir}/${BPN}/*.la ${base_libdir}/*.la" | ||
44 | |||
45 | #FILES_${PN}-dev := "${@oe_filter_out('${datadir}/aclocal', '${FILES_libtool-dev}', d)}" | ||
46 | FILES_libltdl = "${libdir}/libltdl${SOLIBS}" | ||
47 | FILES_libltdl-dev = "${libdir}/libltdl${SOLIBSDEV} ${includedir}" | ||
48 | FILES_libltdl-staticdev = "${libdir}/libltdl.a" | ||
49 | FILES_libltdl-dbg = "${libdir}/.debug/" | ||
50 | |||
51 | export CONFIG_SHELL="/bin/bash" | ||