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>
This commit is contained in:
parent
e940b30385
commit
98873717c2
1
CHANGES
1
CHANGES
@ -78,6 +78,7 @@
|
|||||||
#5018: dialog broken: exits with assert in uClibc
|
#5018: dialog broken: exits with assert in uClibc
|
||||||
#5102: qt package moc, uic, rcc read from wrong place
|
#5102: qt package moc, uic, rcc read from wrong place
|
||||||
#5144: Patch to fix ixon bug in uemacs
|
#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
|
#5204: Missing terminfo file(s) for GNU screen terminal type
|
||||||
|
|
||||||
2012.02, Released February 29th, 2012:
|
2012.02, Released February 29th, 2012:
|
||||||
|
@ -7,8 +7,17 @@
|
|||||||
SCREEN_VERSION = 4.0.3
|
SCREEN_VERSION = 4.0.3
|
||||||
SCREEN_SITE = $(BR2_GNU_MIRROR)/screen
|
SCREEN_SITE = $(BR2_GNU_MIRROR)/screen
|
||||||
SCREEN_DEPENDENCIES = ncurses
|
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_MAKE = $(MAKE1)
|
||||||
SCREEN_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) SCREEN=screen install_bin
|
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))
|
$(eval $(call AUTOTARGETS))
|
||||||
|
Loading…
Reference in New Issue
Block a user