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
|
|
|
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
|
2014-12-13 08:18:59 +01:00
|
|
|
NCURSES_CONFIG_SCRIPTS = ncurses$(NCURSES_LIB_SUFFIX)$(NCURSES_ABI_VERSION)-config
|
2010-05-03 00:46:13 +02:00
|
|
|
|
2014-09-27 21:32:44 +02:00
|
|
|
NCURSES_CONF_OPTS = \
|
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)
|
2015-03-31 09:21:57 +02:00
|
|
|
NCURSES_DEPENDENCIES += busybox
|
2013-12-03 19:03:20 +01:00
|
|
|
endif
|
|
|
|
|
2014-12-11 23:50:10 +01:00
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
|
|
NCURSES_CONF_OPTS += --without-shared --with-normal
|
|
|
|
else ifeq ($(BR2_SHARED_LIBS),y)
|
|
|
|
NCURSES_CONF_OPTS += --with-shared --without-normal
|
|
|
|
else ifeq ($(BR2_SHARED_STATIC_LIBS),y)
|
|
|
|
NCURSES_CONF_OPTS += --with-shared --with-normal
|
|
|
|
endif
|
|
|
|
|
2014-12-15 23:00:11 +01:00
|
|
|
# configure can't find the soname for libgpm when cross compiling
|
|
|
|
ifeq ($(BR2_PACKAGE_GPM),y)
|
|
|
|
NCURSES_CONF_OPTS += --with-gpm=libgpm.so.2
|
|
|
|
NCURSES_DEPENDENCIES += gpm
|
|
|
|
else
|
|
|
|
NCURSES_CONF_OPTS += --without-gpm
|
|
|
|
endif
|
|
|
|
|
2014-12-14 17:04:39 +01:00
|
|
|
NCURSES_LIBS-y = ncurses
|
|
|
|
NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_MENU) += menu
|
|
|
|
NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_PANEL) += panel
|
|
|
|
NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_FORM) += form
|
2014-12-14 17:04:38 +01:00
|
|
|
|
2016-08-02 22:34:35 +02:00
|
|
|
NCURSES_TERMINFO_FILES = \
|
|
|
|
a/ansi \
|
2016-08-05 14:21:31 +02:00
|
|
|
l/linux \
|
2016-08-02 22:34:35 +02:00
|
|
|
p/putty \
|
|
|
|
p/putty-vt100 \
|
|
|
|
s/screen \
|
|
|
|
v/vt100 \
|
|
|
|
v/vt100-putty \
|
|
|
|
v/vt102 \
|
|
|
|
v/vt200 \
|
|
|
|
v/vt220 \
|
|
|
|
x/xterm \
|
|
|
|
x/xterm-color \
|
|
|
|
x/xterm-xfree86 \
|
|
|
|
|
2014-09-17 15:08:16 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y)
|
2014-09-27 21:32:44 +02:00
|
|
|
NCURSES_CONF_OPTS += --enable-widec
|
2014-09-17 15:08:16 +02:00
|
|
|
NCURSES_LIB_SUFFIX = w
|
|
|
|
|
2014-12-14 17:04:37 +01:00
|
|
|
define NCURSES_LINK_LIBS_STATIC
|
2016-08-02 22:34:36 +02:00
|
|
|
$(foreach lib,$(NCURSES_LIBS-y:%=lib%), \
|
|
|
|
ln -sf $(lib)$(NCURSES_LIB_SUFFIX).a $(1)/usr/lib/$(lib).a
|
|
|
|
)
|
2014-09-23 11:33:11 +02:00
|
|
|
ln -sf libncurses$(NCURSES_LIB_SUFFIX).a \
|
|
|
|
$(1)/usr/lib/libcurses.a
|
2014-09-17 15:08:17 +02:00
|
|
|
endef
|
2014-12-14 17:04:37 +01:00
|
|
|
|
|
|
|
define NCURSES_LINK_LIBS_SHARED
|
2016-08-02 22:34:36 +02:00
|
|
|
$(foreach lib,$(NCURSES_LIBS-y:%=lib%), \
|
|
|
|
ln -sf $(lib)$(NCURSES_LIB_SUFFIX).so $(1)/usr/lib/$(lib).so
|
|
|
|
)
|
2014-09-23 11:33:11 +02:00
|
|
|
ln -sf libncurses$(NCURSES_LIB_SUFFIX).so \
|
|
|
|
$(1)/usr/lib/libcurses.so
|
2014-09-17 15:08:16 +02:00
|
|
|
endef
|
|
|
|
|
2014-12-14 17:04:40 +01:00
|
|
|
define NCURSES_LINK_PC
|
2016-08-02 22:34:36 +02:00
|
|
|
$(foreach pc,$(NCURSES_LIBS-y), \
|
|
|
|
ln -sf $(pc)$(NCURSES_LIB_SUFFIX).pc \
|
|
|
|
$(1)/usr/lib/pkgconfig/$(pc).pc
|
|
|
|
)
|
2014-12-14 17:04:40 +01:00
|
|
|
endef
|
|
|
|
|
2014-12-14 17:04:37 +01:00
|
|
|
NCURSES_LINK_TARGET_LIBS = \
|
2014-12-21 21:28:43 +01:00
|
|
|
$(if $(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_STATIC,$(TARGET_DIR));) \
|
2014-12-14 17:04:37 +01:00
|
|
|
$(if $(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_SHARED,$(TARGET_DIR)))
|
|
|
|
NCURSES_LINK_STAGING_LIBS = \
|
2014-12-21 21:28:43 +01:00
|
|
|
$(if $(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_STATIC,$(STAGING_DIR));) \
|
2014-12-14 17:04:37 +01:00
|
|
|
$(if $(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_SHARED,$(STAGING_DIR)))
|
2014-09-17 15:08:16 +02:00
|
|
|
|
2014-12-14 17:04:40 +01:00
|
|
|
NCURSES_LINK_STAGING_PC = $(call NCURSES_LINK_PC,$(STAGING_DIR))
|
|
|
|
|
2014-12-13 08:18:59 +01:00
|
|
|
NCURSES_CONF_OPTS += --enable-ext-colors
|
|
|
|
NCURSES_ABI_VERSION = 6
|
2016-08-02 22:34:35 +02:00
|
|
|
NCURSES_TERMINFO_FILES += \
|
|
|
|
p/putty-256color \
|
|
|
|
x/xterm+256color \
|
|
|
|
x/xterm-256color
|
2014-12-13 08:18:59 +01:00
|
|
|
|
2014-09-17 15:08:16 +02:00
|
|
|
NCURSES_POST_INSTALL_STAGING_HOOKS += NCURSES_LINK_STAGING_LIBS
|
2014-12-14 17:04:40 +01:00
|
|
|
NCURSES_POST_INSTALL_STAGING_HOOKS += NCURSES_LINK_STAGING_PC
|
2014-09-17 15:08:16 +02:00
|
|
|
|
2014-12-13 08:18:59 +01:00
|
|
|
else # BR2_PACKAGE_NCURSES_WCHAR
|
|
|
|
NCURSES_ABI_VERSION = 5
|
|
|
|
endif # BR2_PACKAGE_NCURSES_WCHAR
|
2014-09-17 15:08:16 +02:00
|
|
|
|
2010-05-03 00:46:13 +02:00
|
|
|
ifneq ($(BR2_ENABLE_DEBUG),y)
|
2014-09-27 21:32:44 +02:00
|
|
|
NCURSES_CONF_OPTS += --without-debug
|
2010-05-03 00:46:13 +02:00
|
|
|
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
|
|
|
|
2014-12-03 22:41:29 +01:00
|
|
|
ifneq ($(BR2_STATIC_LIBS),y)
|
2014-03-12 04:54:05 +01:00
|
|
|
define NCURSES_INSTALL_TARGET_LIBS
|
2016-08-02 22:34:36 +02:00
|
|
|
$(foreach lib,$(NCURSES_LIBS-y:%=lib%), \
|
|
|
|
cp -dpf $(NCURSES_DIR)/lib/$(lib)$(NCURSES_LIB_SUFFIX).so* \
|
|
|
|
$(TARGET_DIR)/usr/lib/
|
|
|
|
)
|
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
|
2016-08-02 22:34:36 +02:00
|
|
|
$(foreach prog,$(NCURSES_PROGS), \
|
|
|
|
$(INSTALL) -m 0755 $(NCURSES_DIR)/progs/$(prog) \
|
|
|
|
$(TARGET_DIR)/usr/bin/$(prog)
|
|
|
|
)
|
2013-12-03 19:03:20 +01:00
|
|
|
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)
|
2014-09-17 15:08:16 +02:00
|
|
|
$(NCURSES_LINK_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
|
2016-08-02 22:34:35 +02:00
|
|
|
$(foreach terminfo,$(NCURSES_TERMINFO_FILES),\
|
|
|
|
$(INSTALL) -D -m 0644 $(STAGING_DIR)/usr/share/terminfo/$(terminfo) \
|
|
|
|
$(TARGET_DIR)/usr/share/terminfo/$(terminfo)
|
|
|
|
)
|
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
|
|
|
|
|
2014-09-27 21:32:44 +02:00
|
|
|
HOST_NCURSES_CONF_OPTS = \
|
2015-03-31 09:21:57 +02:00
|
|
|
--with-shared \
|
|
|
|
--without-gpm \
|
2013-02-24 08:27:51 +01:00
|
|
|
--without-manpages \
|
|
|
|
--without-cxx \
|
|
|
|
--without-cxx-binding \
|
2014-12-03 22:41:33 +01:00
|
|
|
--without-ada \
|
|
|
|
--without-normal
|
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))
|