screen: enable terminfo and install screenrc

Closes #5198

Enable terminfo support as reported on bug #5198
Also install screenrc if it's not already present in the target.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012.11.x
Gustavo Zacarias 2012-05-07 00:33:37 +00:00 committed by Peter Korsgaard
parent e940b30385
commit 98873717c2
2 changed files with 11 additions and 1 deletions

View File

@ -78,6 +78,7 @@
#5018: dialog broken: exits with assert in uClibc
#5102: qt package moc, uic, rcc read from wrong place
#5144: Patch to fix ixon bug in uemacs
#5198: Line graphics output is broken in GNU Screen
#5204: Missing terminfo file(s) for GNU screen terminal type
2012.02, Released February 29th, 2012:

View File

@ -7,8 +7,17 @@
SCREEN_VERSION = 4.0.3
SCREEN_SITE = $(BR2_GNU_MIRROR)/screen
SCREEN_DEPENDENCIES = ncurses
SCREEN_CONF_ENV = ac_cv_header_elf_h=no ac_cv_header_dwarf_h=no
SCREEN_CONF_ENV = ac_cv_header_elf_h=no ac_cv_header_dwarf_h=no \
CFLAGS="$(TARGET_CFLAGS) -DTERMINFO"
SCREEN_MAKE = $(MAKE1)
SCREEN_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) SCREEN=screen install_bin
define SCREEN_INSTALL_SCREENRC
if [ ! -f $(TARGET_DIR)/etc/screenrc ]; then \
$(INSTALL) -m 0755 -D $(@D)/etc/screenrc $(TARGET_DIR)/etc/screenrc; \
fi
endef
SCREEN_POST_INSTALL_TARGET_HOOKS += SCREEN_INSTALL_SCREENRC
$(eval $(call AUTOTARGETS))