mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
readline: convert to autotools infrastructure
[Peter: renamed patches to get picked up by infrastructure] Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
5ad8ad0c37
commit
fe6e67ba96
6
CHANGES
6
CHANGES
@ -8,9 +8,9 @@
|
|||||||
busybox, directfb, dnsmasq, e2fsprogs, gstreamer, gperf,
|
busybox, directfb, dnsmasq, e2fsprogs, gstreamer, gperf,
|
||||||
gst-plugins-bad, gvfs, flex, hal, iptables, iw, jpeg, kismet, libfuse,
|
gst-plugins-bad, gvfs, flex, hal, iptables, iw, jpeg, kismet, libfuse,
|
||||||
libglib2, libpcap, libungif, libxml2, lighttpd, mesa, mpg123,
|
libglib2, libpcap, libungif, libxml2, lighttpd, mesa, mpg123,
|
||||||
mtd-utils, neon, netstat-nat, openvpn, pcre, qt, rpm, sawman, sdl,
|
mtd-utils, neon, netstat-nat, openvpn, pcre, qt, readline, rpm,
|
||||||
sdl_ttf, ser2net, sqlite, sshfs, tremor, u-boot, usb_modeswitch,
|
sawman, sdl, sdl_ttf, ser2net, sqlite, sshfs, tremor, u-boot,
|
||||||
usbutils, webkit, wpa_supplicant, xfsprogs, zlib
|
usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
|
||||||
|
|
||||||
Issues resolved (http://bugs.uclibc.org):
|
Issues resolved (http://bugs.uclibc.org):
|
||||||
|
|
||||||
|
@ -3,89 +3,24 @@
|
|||||||
# build GNU readline
|
# build GNU readline
|
||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
READLINE_VERSION:=5.2
|
READLINE_VERSION = 5.2
|
||||||
READLINE_SITE:=$(BR2_GNU_MIRROR)/readline
|
READLINE_SOURCE = readline-$(READLINE_VERSION).tar.gz
|
||||||
READLINE_SOURCE:=readline-$(READLINE_VERSION).tar.gz
|
READLINE_SITE = $(BR2_GNU_MIRROR)/readline
|
||||||
READLINE_DIR:=$(BUILD_DIR)/readline-$(READLINE_VERSION)
|
READLINE_INSTALL_STAGING = YES
|
||||||
READLINE_CAT:=$(ZCAT)
|
READLINE_INSTALL_TARGET = YES
|
||||||
READLINE_BINARY:=libhistory.a
|
|
||||||
READLINE_SHARED_BINARY:=libhistory.so
|
|
||||||
READLINE_TARGET_BINARY:=usr/lib/$(READLINE_BINARY)
|
|
||||||
READLINE_TARGET_SHARED_BINARY:=usr/lib/$(READLINE_SHARED_BINARY)
|
|
||||||
|
|
||||||
$(DL_DIR)/$(READLINE_SOURCE):
|
READLINE_DEPENDENCIES = ncurses
|
||||||
$(call DOWNLOAD,$(READLINE_SITE),$(READLINE_SOURCE))
|
|
||||||
|
|
||||||
readline-source: $(DL_DIR)/$(READLINE_SOURCE)
|
READLINE_CONF_ENV = bash_cv_func_sigsetjmp=yes
|
||||||
|
|
||||||
$(READLINE_DIR)/.unpacked: $(DL_DIR)/$(READLINE_SOURCE)
|
define READLINE_INSTALL_TARGET_CMDS
|
||||||
mkdir -p $(READLINE_DIR)
|
$(MAKE1) DESTDIR=$(TARGET_DIR) -C $(@D) uninstall
|
||||||
tar -C $(BUILD_DIR) -zxf $(DL_DIR)/$(READLINE_SOURCE)
|
$(MAKE1) DESTDIR=$(TARGET_DIR) -C $(@D) install-shared uninstall-doc
|
||||||
toolchain/patch-kernel.sh $(READLINE_DIR) package/readline/ readline??-???
|
chmod 775 $(TARGET_DIR)/usr/lib/libreadline.so.$(READLINE_VERSION) \
|
||||||
$(CONFIG_UPDATE) $(READLINE_DIR)
|
$(TARGET_DIR)/usr/lib/libhistory.so.$(READLINE_VERSION)
|
||||||
$(CONFIG_UPDATE) $(READLINE_DIR)/support
|
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) \
|
||||||
touch $@
|
$(TARGET_DIR)/usr/lib/libreadline.so.$(READLINE_VERSION) \
|
||||||
|
$(TARGET_DIR)/usr/lib/libhistory.so.$(READLINE_VERSION)
|
||||||
|
endef
|
||||||
|
|
||||||
$(READLINE_DIR)/.configured: $(READLINE_DIR)/.unpacked
|
$(eval $(call AUTOTARGETS,package,readline))
|
||||||
(cd $(READLINE_DIR); rm -rf config.cache; \
|
|
||||||
bash_cv_func_sigsetjmp=yes \
|
|
||||||
$(TARGET_CONFIGURE_OPTS) \
|
|
||||||
$(TARGET_CONFIGURE_ARGS) \
|
|
||||||
./configure $(QUIET) \
|
|
||||||
--target=$(GNU_TARGET_NAME) \
|
|
||||||
--host=$(GNU_TARGET_NAME) \
|
|
||||||
--build=$(GNU_HOST_NAME) \
|
|
||||||
--prefix=/usr \
|
|
||||||
--exec-prefix=/usr \
|
|
||||||
--bindir=/usr/bin \
|
|
||||||
--sbindir=/usr/sbin \
|
|
||||||
--libdir=/usr/lib \
|
|
||||||
--libexecdir=/usr/lib \
|
|
||||||
--sysconfdir=/etc \
|
|
||||||
--datadir=/usr/share \
|
|
||||||
--localstatedir=/var \
|
|
||||||
--with-shared \
|
|
||||||
--includedir=/usr/include \
|
|
||||||
--mandir=/usr/man \
|
|
||||||
--infodir=/usr/info \
|
|
||||||
)
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
$(READLINE_DIR)/$(READLINE_BINARY): $(READLINE_DIR)/.configured
|
|
||||||
$(MAKE) -C $(READLINE_DIR) SHLIB_LIBS="-lncurses"
|
|
||||||
ls $(READLINE_DIR)/$(READLINE_BINARY)
|
|
||||||
touch -c $@
|
|
||||||
|
|
||||||
$(STAGING_DIR)/$(READLINE_TARGET_BINARY): $(READLINE_DIR)/.configured
|
|
||||||
$(MAKE) -C $(READLINE_DIR) install
|
|
||||||
touch -c $@
|
|
||||||
|
|
||||||
# Install to Staging area
|
|
||||||
$(STAGING_DIR)/usr/include/readline/readline.h: $(READLINE_DIR)/$(READLINE_BINARY)
|
|
||||||
BUILD_CC=$(TARGET_CC) HOSTCC="$(HOSTCC)" CC=$(TARGET_CC) \
|
|
||||||
$(MAKE1) DESTDIR=$(STAGING_DIR) -C $(READLINE_DIR) install
|
|
||||||
touch -c $@
|
|
||||||
|
|
||||||
# Install to Target directory
|
|
||||||
$(TARGET_DIR)/$(READLINE_TARGET_SHARED_BINARY): $(READLINE_DIR)/$(READLINE_BINARY)
|
|
||||||
# make sure we don't end up with lib{readline,history}...old
|
|
||||||
$(MAKE1) DESTDIR=$(TARGET_DIR) -C $(READLINE_DIR) uninstall
|
|
||||||
BUILD_CC=$(TARGET_CC) HOSTCC="$(HOSTCC)" CC=$(TARGET_CC) \
|
|
||||||
$(MAKE1) DESTDIR=$(TARGET_DIR) \
|
|
||||||
-C $(READLINE_DIR) install-shared uninstall-doc
|
|
||||||
chmod 775 $(TARGET_DIR)/usr/lib/libreadline.so.$(READLINE_VERSION) $(TARGET_DIR)/usr/lib/libhistory.so.$(READLINE_VERSION)
|
|
||||||
$(STRIPCMD) $(TARGET_DIR)/usr/lib/libreadline.so.$(READLINE_VERSION) $(TARGET_DIR)/usr/lib/libhistory.so.$(READLINE_VERSION)
|
|
||||||
|
|
||||||
readline: ncurses $(STAGING_DIR)/usr/include/readline/readline.h $(TARGET_DIR)/$(READLINE_TARGET_SHARED_BINARY)
|
|
||||||
|
|
||||||
readline-clean:
|
|
||||||
-$(MAKE) -C $(READLINE_DIR) DESTDIR=$(STAGING_DIR) uninstall
|
|
||||||
-$(MAKE) -C $(READLINE_DIR) DESTDIR=$(TARGET_DIR) uninstall
|
|
||||||
-$(MAKE) -C $(READLINE_DIR) clean
|
|
||||||
|
|
||||||
readline-dirclean:
|
|
||||||
rm -rf $(READLINE_DIR)
|
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_READLINE),y)
|
|
||||||
TARGETS+=readline
|
|
||||||
endif
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user