2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2002-05-23 21:21:23 +02:00
|
|
|
#
|
|
|
|
# ncurses
|
2008-03-07 14:57:53 +01:00
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2008-03-07 14:57:53 +01:00
|
|
|
|
2012-07-26 09:21:12 +02:00
|
|
|
NCURSES_VERSION = 5.9
|
2010-05-03 00:46:13 +02:00
|
|
|
NCURSES_SITE = $(BR2_GNU_MIRROR)/ncurses
|
|
|
|
NCURSES_INSTALL_STAGING = YES
|
2011-08-26 15:01:41 +02:00
|
|
|
NCURSES_DEPENDENCIES = host-ncurses
|
2013-12-03 19:03:20 +01:00
|
|
|
HOST_NCURSES_DEPENDENCIES =
|
|
|
|
NCURSES_PROGS = clear infocmp tabs tic toe tput tset
|
2012-11-13 02:05:36 +01:00
|
|
|
NCURSES_LICENSE = MIT with advertising clause
|
|
|
|
NCURSES_LICENSE_FILES = README
|
2013-02-07 13:35:05 +01:00
|
|
|
NCURSES_CONFIG_SCRIPTS = ncurses5-config
|
2010-05-03 00:46:13 +02:00
|
|
|
|
|
|
|
NCURSES_CONF_OPT = \
|
2012-06-29 16:11:50 +02:00
|
|
|
$(if $(BR2_PREFER_STATIC_LIB),--without-shared,--with-shared) \
|
2010-05-03 00:46:13 +02:00
|
|
|
--without-cxx \
|
|
|
|
--without-cxx-binding \
|
|
|
|
--without-ada \
|
2011-04-05 12:31:22 +02:00
|
|
|
--without-tests \
|
2010-05-03 00:46:13 +02:00
|
|
|
--disable-big-core \
|
|
|
|
--without-profile \
|
|
|
|
--disable-rpath \
|
2012-07-26 09:21:12 +02:00
|
|
|
--disable-rpath-hack \
|
2010-05-03 00:46:13 +02:00
|
|
|
--enable-echo \
|
|
|
|
--enable-const \
|
|
|
|
--enable-overwrite \
|
2013-02-24 08:27:50 +01:00
|
|
|
--enable-pc-files \
|
2013-12-03 19:03:20 +01:00
|
|
|
$(if $(BR2_PACKAGE_NCURSES_TARGET_PROGS),,--without-progs) \
|
2014-02-05 14:50:56 +01:00
|
|
|
--without-manpages
|
2007-06-25 17:38:03 +02:00
|
|
|
|
2013-12-03 19:03:20 +01:00
|
|
|
# Install after busybox for the full-blown versions
|
|
|
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
|
|
NCURSES_DEPENDENCIES += busybox
|
|
|
|
endif
|
|
|
|
|
2014-03-12 04:54:05 +01:00
|
|
|
NCURSES_LIBS-y = libncurses
|
|
|
|
NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_MENU) += libmenu
|
|
|
|
NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_PANEL) += libpanel
|
|
|
|
NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_FORM) += libform
|
|
|
|
|
2010-05-03 00:46:13 +02:00
|
|
|
ifneq ($(BR2_ENABLE_DEBUG),y)
|
|
|
|
NCURSES_CONF_OPT += --without-debug
|
|
|
|
endif
|
2008-03-07 14:57:53 +01:00
|
|
|
|
2014-05-28 22:12:39 +02:00
|
|
|
# ncurses breaks with parallel build, but takes quite a while to
|
|
|
|
# build single threaded. Work around it similar to how Gentoo does
|
2010-05-03 00:46:13 +02:00
|
|
|
define NCURSES_BUILD_CMDS
|
2014-05-28 22:12:39 +02:00
|
|
|
$(MAKE1) -C $(@D) DESTDIR=$(STAGING_DIR) sources
|
|
|
|
rm -rf $(@D)/misc/pc-files
|
|
|
|
$(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR)
|
2010-05-03 00:46:13 +02:00
|
|
|
endef
|
2008-03-07 14:57:53 +01:00
|
|
|
|
2012-06-29 16:11:50 +02:00
|
|
|
ifneq ($(BR2_PREFER_STATIC_LIB),y)
|
2014-03-12 04:54:05 +01:00
|
|
|
define NCURSES_INSTALL_TARGET_LIBS
|
|
|
|
for lib in $(NCURSES_LIBS-y); do \
|
|
|
|
cp -dpf $(NCURSES_DIR)/lib/$${lib}.so* $(TARGET_DIR)/usr/lib/; \
|
|
|
|
done
|
2010-05-03 00:46:13 +02:00
|
|
|
endef
|
2008-04-09 13:38:48 +02:00
|
|
|
endif
|
2010-05-03 00:46:13 +02:00
|
|
|
|
2013-12-03 19:03:20 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES_TARGET_PROGS),y)
|
|
|
|
define NCURSES_INSTALL_TARGET_PROGS
|
|
|
|
for x in $(NCURSES_PROGS); do \
|
|
|
|
$(INSTALL) -m 0755 $(NCURSES_DIR)/progs/$$x \
|
|
|
|
$(TARGET_DIR)/usr/bin/$$x; \
|
|
|
|
done
|
|
|
|
ln -sf tset $(TARGET_DIR)/usr/bin/reset
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2010-05-03 00:46:13 +02:00
|
|
|
define NCURSES_INSTALL_TARGET_CMDS
|
|
|
|
mkdir -p $(TARGET_DIR)/usr/lib
|
2014-03-12 04:54:05 +01:00
|
|
|
$(NCURSES_INSTALL_TARGET_LIBS)
|
2013-12-03 19:03:20 +01:00
|
|
|
$(NCURSES_INSTALL_TARGET_PROGS)
|
2008-07-01 21:24:36 +02:00
|
|
|
ln -snf /usr/share/terminfo $(TARGET_DIR)/usr/lib/terminfo
|
2008-03-07 14:57:53 +01:00
|
|
|
mkdir -p $(TARGET_DIR)/usr/share/terminfo/x
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/x/xterm $(TARGET_DIR)/usr/share/terminfo/x
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/x/xterm-color $(TARGET_DIR)/usr/share/terminfo/x
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/x/xterm-xfree86 $(TARGET_DIR)/usr/share/terminfo/x
|
|
|
|
mkdir -p $(TARGET_DIR)/usr/share/terminfo/v
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/v/vt100 $(TARGET_DIR)/usr/share/terminfo/v
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/v/vt102 $(TARGET_DIR)/usr/share/terminfo/v
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/v/vt200 $(TARGET_DIR)/usr/share/terminfo/v
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/v/vt220 $(TARGET_DIR)/usr/share/terminfo/v
|
|
|
|
mkdir -p $(TARGET_DIR)/usr/share/terminfo/a
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/a/ansi $(TARGET_DIR)/usr/share/terminfo/a
|
|
|
|
mkdir -p $(TARGET_DIR)/usr/share/terminfo/l
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/l/linux $(TARGET_DIR)/usr/share/terminfo/l
|
2012-05-07 02:33:36 +02:00
|
|
|
mkdir -p $(TARGET_DIR)/usr/share/terminfo/s
|
|
|
|
cp -dpf $(STAGING_DIR)/usr/share/terminfo/s/screen $(TARGET_DIR)/usr/share/terminfo/s
|
2010-05-03 00:46:13 +02:00
|
|
|
endef # NCURSES_INSTALL_TARGET_CMDS
|
2002-05-23 21:21:23 +02:00
|
|
|
|
2011-08-26 15:01:41 +02:00
|
|
|
#
|
|
|
|
# On systems with an older version of tic, the installation of ncurses hangs
|
|
|
|
# forever. To resolve the problem, build a static version of tic on host
|
|
|
|
# ourselves, and use that during installation.
|
|
|
|
#
|
|
|
|
define HOST_NCURSES_BUILD_CMDS
|
|
|
|
$(MAKE1) -C $(@D) sources
|
|
|
|
$(MAKE) -C $(@D)/progs tic
|
|
|
|
endef
|
|
|
|
|
|
|
|
HOST_NCURSES_CONF_OPT = \
|
2013-03-23 23:26:37 +01:00
|
|
|
--with-shared --without-gpm \
|
2013-02-24 08:27:51 +01:00
|
|
|
--without-manpages \
|
|
|
|
--without-cxx \
|
|
|
|
--without-cxx-binding \
|
|
|
|
--without-ada
|
2011-08-26 15:01:41 +02:00
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|
2012-07-03 00:06:54 +02:00
|
|
|
$(eval $(host-autotools-package))
|