|
@@ -12,7 +12,7 @@ HOST_NCURSES_DEPENDENCIES =
|
|
|
NCURSES_PROGS = clear infocmp tabs tic toe tput tset
|
|
|
NCURSES_LICENSE = MIT with advertising clause
|
|
|
NCURSES_LICENSE_FILES = README
|
|
|
-NCURSES_CONFIG_SCRIPTS = ncurses5-config
|
|
|
+NCURSES_CONFIG_SCRIPTS = ncurses$(NCURSES_LIB_SUFFIX)5-config
|
|
|
|
|
|
NCURSES_CONF_OPT = \
|
|
|
$(if $(BR2_PREFER_STATIC_LIB),--without-shared,--with-shared) \
|
|
@@ -36,6 +36,24 @@ ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
|
|
NCURSES_DEPENDENCIES += busybox
|
|
|
endif
|
|
|
|
|
|
+ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y)
|
|
|
+NCURSES_CONF_OPT += --enable-widec
|
|
|
+NCURSES_LIB_SUFFIX = w
|
|
|
+
|
|
|
+define NCURSES_LINK_LIBS
|
|
|
+ for lib in $(NCURSES_LIBS-y); do \
|
|
|
+ ln -sf $${lib}$(NCURSES_LIB_SUFFIX).so \
|
|
|
+ $(1)/usr/lib/$${lib}.so; \
|
|
|
+ done
|
|
|
+endef
|
|
|
+
|
|
|
+NCURSES_LINK_TARGET_LIBS = $(call NCURSES_LINK_LIBS, $(TARGET_DIR))
|
|
|
+NCURSES_LINK_STAGING_LIBS = $(call NCURSES_LINK_LIBS, $(STAGING_DIR))
|
|
|
+
|
|
|
+NCURSES_POST_INSTALL_STAGING_HOOKS += NCURSES_LINK_STAGING_LIBS
|
|
|
+
|
|
|
+endif
|
|
|
+
|
|
|
NCURSES_LIBS-y = libncurses
|
|
|
NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_MENU) += libmenu
|
|
|
NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_PANEL) += libpanel
|
|
@@ -56,7 +74,8 @@ endef
|
|
|
ifneq ($(BR2_PREFER_STATIC_LIB),y)
|
|
|
define NCURSES_INSTALL_TARGET_LIBS
|
|
|
for lib in $(NCURSES_LIBS-y); do \
|
|
|
- cp -dpf $(NCURSES_DIR)/lib/$${lib}.so* $(TARGET_DIR)/usr/lib/; \
|
|
|
+ cp -dpf $(NCURSES_DIR)/lib/$${lib}$(NCURSES_LIB_SUFFIX).so* \
|
|
|
+ $(TARGET_DIR)/usr/lib/; \
|
|
|
done
|
|
|
endef
|
|
|
endif
|
|
@@ -74,6 +93,7 @@ endif
|
|
|
define NCURSES_INSTALL_TARGET_CMDS
|
|
|
mkdir -p $(TARGET_DIR)/usr/lib
|
|
|
$(NCURSES_INSTALL_TARGET_LIBS)
|
|
|
+ $(NCURSES_LINK_TARGET_LIBS)
|
|
|
$(NCURSES_INSTALL_TARGET_PROGS)
|
|
|
ln -snf /usr/share/terminfo $(TARGET_DIR)/usr/lib/terminfo
|
|
|
mkdir -p $(TARGET_DIR)/usr/share/terminfo/x
|