blob: 2df46aa7735ba0c666a6957b0a268362ce64c685 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Generic library support script"
2DESCRIPTION = "This is GNU libtool, a generic library support script. \
3Libtool hides the complexity of generating special library types \
4(such as shared libraries) behind a consistent interface."
5HOMEPAGE = "http://www.gnu.org/software/libtool/libtool.html"
6SECTION = "devel"
7LICENSE = "GPLv2 & LGPLv2.1"
8LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
9 file://libltdl/COPYING.LIB;md5=4fbd65380cdd255951079008b364516c "
10
11SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \
Andrew Geisslereff27472021-10-29 15:35:00 -050012 file://0001-ltmain.in-Handle-trailing-slashes-on-install-command.patch \
13 file://0002-libtool.m4-Rename-the-with-sysroot-option-to-avoid-c.patch \
14 file://0003-ltmain.in-Add-missing-sysroot-to-library-path.patch \
15 file://0004-ltmain.sh-Fix-sysroot-paths-being-encoded-into-RPATH.patch \
16 file://0005-ltmain.in-Don-t-encode-RATHS-which-match-default-lin.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017 file://dont-depend-on-help2man.patch \
Andrew Geisslereff27472021-10-29 15:35:00 -050018 file://0006-libtool.m4-Handle-as-a-sysroot-correctly.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019 file://nohardcodepaths.patch \
20 file://unwind-opt-parsing.patch \
Andrew Geisslereff27472021-10-29 15:35:00 -050021 file://0007-libtool-Fix-support-for-NIOS2-processor.patch \
22 file://0008-libtool-Check-for-static-libs-for-internal-compiler-.patch \
23 file://0009-Makefile.am-make-sure-autoheader-run-before-autoconf.patch \
24 file://0010-Makefile.am-make-sure-autoheader-run-before-automake.patch \
25 file://0011-ltmain.in-Handle-prefix-map-compiler-options-correct.patch \
26 file://0012-libtool.m4-For-reproducibility-stop-encoding-hostnam.patch \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027 "
28
29SRC_URI[md5sum] = "addf44b646ddb4e3919805aa88fa7c5e"
30SRC_URI[sha256sum] = "e3bd4d5d3d025a36c21dd6af7ea818a2afcd4dfc1ea5a17b39d7854bcd0c06e3"
31
Patrick Williams213cb262021-08-07 19:21:33 -050032do_compile:prepend () {
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033 # Sometimes this file doesn't get rebuilt, force the issue
34 rm -f ${S}/build-aux/ltmain.sh
35 make build-aux/ltmain.sh
36 ./config.status
37}
38
39inherit autotools texinfo
40EXTRA_AUTORECONF = "--exclude=libtoolize"
41
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050042CACHED_CONFIGUREVARS += "ac_cv_path_GREP=grep"
43
Patrick Williamsc124f4f2015-09-15 14:41:29 -050044DEPENDS = "libtool-native"
45
46PACKAGES =+ "libltdl"
Patrick Williams213cb262021-08-07 19:21:33 -050047FILES:${PN} += "${datadir}/aclocal"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050048
Patrick Williams213cb262021-08-07 19:21:33 -050049FILES:${PN}-dev:remove = "${datadir}/aclocal"
50FILES:libltdl = "${libdir}/libltdl${SOLIBS}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050051
52export CONFIG_SHELL="/bin/bash"