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
|
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 \
|
|
|
|
--without-progs \
|
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 \
|
|
|
|
$(if $(BR2_HAVE_DOCUMENTATION),,--without-manpages)
|
2007-06-25 17:38:03 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
|
2010-05-03 00:46:13 +02:00
|
|
|
define NCURSES_BUILD_CMDS
|
|
|
|
$(MAKE1) -C $(@D) DESTDIR=$(STAGING_DIR)
|
|
|
|
endef
|
2008-03-07 14:57:53 +01:00
|
|
|
|
2012-06-29 16:11:50 +02:00
|
|
|
ifneq ($(BR2_PREFER_STATIC_LIB),y)
|
|
|
|
|
2008-12-08 09:15:27 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES_TARGET_PANEL),y)
|
2010-05-03 00:46:13 +02:00
|
|
|
define NCURSES_INSTALL_TARGET_PANEL
|
2008-04-10 10:17:14 +02:00
|
|
|
cp -dpf $(NCURSES_DIR)/lib/libpanel.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
|
|
|
|
2008-12-08 09:15:27 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES_TARGET_FORM),y)
|
2010-05-03 00:46:13 +02:00
|
|
|
define NCURSES_INSTALL_TARGET_FORM
|
2008-04-10 10:17:14 +02:00
|
|
|
cp -dpf $(NCURSES_DIR)/lib/libform.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
|
|
|
|
2008-12-08 09:15:27 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES_TARGET_MENU),y)
|
2010-05-03 00:46:13 +02:00
|
|
|
define NCURSES_INSTALL_TARGET_MENU
|
2008-04-10 10:17:14 +02:00
|
|
|
cp -dpf $(NCURSES_DIR)/lib/libmenu.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
|
|
|
|
2012-06-29 16:11:50 +02:00
|
|
|
endif
|
|
|
|
|
2010-05-03 00:46:13 +02:00
|
|
|
define NCURSES_INSTALL_TARGET_CMDS
|
|
|
|
mkdir -p $(TARGET_DIR)/usr/lib
|
2012-06-29 16:11:50 +02:00
|
|
|
$(if $(BR2_PREFER_STATIC_LIB),,cp -dpf $(NCURSES_DIR)/lib/libncurses.so* $(TARGET_DIR)/usr/lib/)
|
2010-05-03 00:46:13 +02:00
|
|
|
$(NCURSES_INSTALL_TARGET_PANEL)
|
|
|
|
$(NCURSES_INSTALL_TARGET_FORM)
|
|
|
|
$(NCURSES_INSTALL_TARGET_MENU)
|
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))
|