Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 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 \ |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 22 | file://0001-libtool-Fix-support-for-NIOS2-processor.patch \ |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 23 | " |
| 24 | |
| 25 | SRC_URI[md5sum] = "addf44b646ddb4e3919805aa88fa7c5e" |
| 26 | SRC_URI[sha256sum] = "e3bd4d5d3d025a36c21dd6af7ea818a2afcd4dfc1ea5a17b39d7854bcd0c06e3" |
| 27 | |
| 28 | do_compile_prepend () { |
| 29 | # Sometimes this file doesn't get rebuilt, force the issue |
| 30 | rm -f ${S}/build-aux/ltmain.sh |
| 31 | make build-aux/ltmain.sh |
| 32 | ./config.status |
| 33 | } |
| 34 | |
| 35 | inherit autotools texinfo |
| 36 | EXTRA_AUTORECONF = "--exclude=libtoolize" |
| 37 | |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 38 | CACHED_CONFIGUREVARS += "ac_cv_path_GREP=grep" |
| 39 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 40 | DEPENDS = "libtool-native" |
| 41 | |
| 42 | PACKAGES =+ "libltdl" |
| 43 | FILES_${PN} += "${datadir}/aclocal" |
| 44 | |
| 45 | FILES_${PN}-dev_remove = "${datadir}/aclocal" |
| 46 | FILES_libltdl = "${libdir}/libltdl${SOLIBS}" |
| 47 | |
| 48 | export CONFIG_SHELL="/bin/bash" |