Revert "ncurses: update to 6.0 and rename 5.9 to ncurses-compat"

This reverts commit a420b3e7b9.

toolchain build fails on all architectures.
This commit is contained in:
Arne Fitzenreiter
2016-04-30 09:25:12 -04:00
parent 6378290f73
commit c356c8ce6a
5 changed files with 949 additions and 4720 deletions

View File

@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2016 IPFire Team <info@ipfire.org> #
# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,7 +24,7 @@
include Config
VER = 6.0
VER = 5.9
THISAPP = ncurses-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -41,6 +41,20 @@ else
PREFIX = /tools
endif
EXTRA_CONFIG += \
--prefix=$(PREFIX) \
--with-shared \
--without-debug \
--without-ada \
--with-ospeed=unsigned \
--with-chtype=long \
--enable-hard-tabs \
--enable-xmc-glitch \
--enable-colorfgbg \
--enable-overwrite \
--with-termlib=tinfo \
--disable-nls
###############################################################################
# Top-level Rules
###############################################################################
@@ -49,7 +63,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = ee13d052e1ead260d7c28071f46eefb1
$(DL_FILE)_MD5 = 8cb9c412e5f2d96bc6f459aa8c6282a1
install : $(TARGET)
@@ -79,31 +93,35 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
# Don't install a static library
cd $(DIR_APP) && sed -i '/LIBTOOL_INSTALL/d' c++/Makefile.in
cd $(DIR_APP) && ./configure \
--prefix=$(PREFIX) \
--enable-widec \
--with-shared \
--without-debug \
--without-normal \
--enable-pc-files \
--disable-nls \
--mandir=/usr/share/man
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
cd $(DIR_APP) && mkdir -pv narrowc widec
# allow the linker to find non-wide-character Ncurses libraries
for lib in ncurses form panel menu; do \
rm -vf $(PREFIX)/lib/lib$${lib}.so; \
echo "INPUT(-l$${lib}w)" > $(PREFIX)/lib/lib$${lib}.so; \
ln -sfv $${lib}w.pc $(PREFIX)/lib/pkgconfig/$${lib}.pc; \
# Build narrowc version.
cd $(DIR_APP)/narrowc && ln -svf ../configure .
cd $(DIR_APP)/narrowc && ./configure $(EXTRA_CONFIG) --with-ticlib
cd $(DIR_APP)/narrowc && make libs
cd $(DIR_APP)/narrowc && make -C progs
# Build widec version.
cd $(DIR_APP)/widec && ln -svf ../configure .
cd $(DIR_APP)/widec && ./configure $(EXTRA_CONFIG) \
--enable-widec --without-progs
cd $(DIR_APP)/widec && make libs
# Install everything.
cd $(DIR_APP) && make -C narrowc install.{libs,progs,data}
rm -vf $(PREFIX)/lib/libtinfo.*
cd $(DIR_APP) && make -C widec install.{libs,includes,man}
# don't require -ltinfo when linking with --no-add-needed
for l in $(PREFIX)/lib/libncurses{,w}.so; do \
soname=$$(basename $$(readlink $$l)); \
rm -f $$l; \
echo "INPUT($$soname -ltinfo)" > $$l; \
done
# old applications that look for -lcurses at build time are still buildable
rm -vf /usr/lib/libcursesw.so
rm -vf $(PREFIX)/lib/libcurses{,w}.so
echo "INPUT(-lncurses)" > $(PREFIX)/lib/libcurses.so
echo "INPUT(-lncursesw)" > $(PREFIX)/lib/libcursesw.so
ln -sfv libncurses.so $(PREFIX)/lib/libcurses.so
echo "INPUT(-ltinfo)" > $(PREFIX)/lib/libtermcap.so
@rm -rf $(DIR_APP)
@$(POSTBUILD)