diff options
Diffstat (limited to 'meta/recipes-devtools/libtool/libtool-2.4.4.inc')
-rw-r--r-- | meta/recipes-devtools/libtool/libtool-2.4.4.inc | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libtool/libtool-2.4.4.inc b/meta/recipes-devtools/libtool/libtool-2.4.4.inc new file mode 100644 index 0000000000..643fd52a9c --- /dev/null +++ b/meta/recipes-devtools/libtool/libtool-2.4.4.inc | |||
@@ -0,0 +1,49 @@ | |||
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 | " | ||
21 | |||
22 | SRC_URI[md5sum] = "353ed373fd3c6d7e47a1f4a8728d966b" | ||
23 | SRC_URI[sha256sum] = "159d4e20c201f929e3562536d3ae6b5e605403fa4bb4e72ef197a4e162c3fedf" | ||
24 | |||
25 | do_compile_prepend () { | ||
26 | # Sometimes this file doesn't get rebuilt, force the issue | ||
27 | rm -f ${S}/build-aux/ltmain.sh | ||
28 | make build-aux/ltmain.sh | ||
29 | ./config.status | ||
30 | } | ||
31 | |||
32 | inherit autotools texinfo | ||
33 | EXTRA_AUTORECONF = "--exclude=libtoolize" | ||
34 | |||
35 | DEPENDS = "libtool-native" | ||
36 | |||
37 | PACKAGES =+ "libltdl libltdl-dev libltdl-dbg libltdl-staticdev" | ||
38 | FILES_${PN} += "${datadir}/aclocal" | ||
39 | FILES_${PN}-dev = "${includedir} ${FILES_SOLIBSDEV} ${libdir}/*.la \ | ||
40 | ${libdir}/*.o ${libdir}/pkgconfig ${datadir}/pkgconfig \ | ||
41 | ${base_libdir}/*.o ${libdir}/${BPN}/*.la ${base_libdir}/*.la" | ||
42 | |||
43 | #FILES_${PN}-dev := "${@oe_filter_out('${datadir}/aclocal', '${FILES_libtool-dev}', d)}" | ||
44 | FILES_libltdl = "${libdir}/libltdl${SOLIBS}" | ||
45 | FILES_libltdl-dev = "${libdir}/libltdl${SOLIBSDEV} ${includedir}" | ||
46 | FILES_libltdl-staticdev = "${libdir}/libltdl.a" | ||
47 | FILES_libltdl-dbg = "${libdir}/.debug/" | ||
48 | |||
49 | export CONFIG_SHELL="/bin/bash" | ||