Move all to deprecated folder.
This commit is contained in:
7
deprecated/firmware/buildroot/package/libtool/Config.in
Normal file
7
deprecated/firmware/buildroot/package/libtool/Config.in
Normal file
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_LIBTOOL
|
||||
bool "libtool"
|
||||
help
|
||||
Library that hides the complexity of using shared/static libraries
|
||||
on different platforms behind a consistent, portable interface.
|
||||
|
||||
http://www.gnu.org/software/libtool/
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 7c87a8c2c8c0fc9cd5019e402bed4292462d00a718a7cd5f11218153bf28b26f libtool-2.4.6.tar.xz
|
||||
44
deprecated/firmware/buildroot/package/libtool/libtool.mk
Normal file
44
deprecated/firmware/buildroot/package/libtool/libtool.mk
Normal file
@@ -0,0 +1,44 @@
|
||||
################################################################################
|
||||
#
|
||||
# libtool
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBTOOL_VERSION = 2.4.6
|
||||
LIBTOOL_SOURCE = libtool-$(LIBTOOL_VERSION).tar.xz
|
||||
LIBTOOL_SITE = $(BR2_GNU_MIRROR)/libtool
|
||||
LIBTOOL_INSTALL_STAGING = YES
|
||||
LIBTOOL_CONF_ENV = HELP2MAN=true
|
||||
LIBTOOL_DEPENDENCIES = host-m4
|
||||
LIBTOOL_LICENSE = GPLv2+
|
||||
LIBTOOL_LICENSE_FILES = COPYING
|
||||
|
||||
HOST_LIBTOOL_CONF_ENV = MAKEINFO=true
|
||||
HOST_LIBTOOL_LIBTOOL_PATCH = NO
|
||||
|
||||
# We have a patch that affects libtool.m4, which triggers an autoreconf
|
||||
# in the build step. Normally we would set AUTORECONF = YES, but this
|
||||
# doesn't work for host-libtool because that creates a circular
|
||||
# dependency. Instead, touch the generated files so autoreconf is not
|
||||
# triggered in the build step. Note that aclocal.m4 has to be touched
|
||||
# first since the rest depends on it. Note that we don't need the changes
|
||||
# in libtool.m4 in our configure script, because we're not actually
|
||||
# running it on the target.
|
||||
# For the target, we would normally be able to use AUTORECONF, but it
|
||||
# fails on libltdl/Makefile.inc. Rather than trying to fix that failure,
|
||||
# just use the same hack as on the host.
|
||||
define LIBTOOL_AVOID_AUTORECONF_HOOK
|
||||
find $(@D) -name aclocal.m4 -exec touch '{}' \;
|
||||
find $(@D) -name config-h.in -exec touch '{}' \;
|
||||
find $(@D) -name configure -exec touch '{}' \;
|
||||
find $(@D) -name Makefile.in -exec touch '{}' \;
|
||||
endef
|
||||
LIBTOOL_PRE_CONFIGURE_HOOKS += LIBTOOL_AVOID_AUTORECONF_HOOK
|
||||
HOST_LIBTOOL_PRE_CONFIGURE_HOOKS += LIBTOOL_AVOID_AUTORECONF_HOOK
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
|
||||
# variables used by other packages
|
||||
LIBTOOL = $(HOST_DIR)/usr/bin/libtool
|
||||
LIBTOOLIZE = $(HOST_DIR)/usr/bin/libtoolize
|
||||
Reference in New Issue
Block a user