]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/ncurses
toolchain: enable build on aarch64 multilib hosts
[ipfire-2.x.git] / lfs / ncurses
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
b5548cbb 4# Copyright (C) 2007-2016 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
c356c8ce 27VER = 5.9
cd1a2927
MT
28
29THISAPP = ncurses-$(VER)
30DL_FILE = $(THISAPP).tar.gz
dd714b8a 31DL_FROM = $(URL_IPFIRE)
cd1a2927
MT
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34# Normal build or /tools build.
35#
36ifeq "$(ROOT)" ""
37 TARGET = $(DIR_INFO)/$(THISAPP)
11af354f 38 PREFIX = /usr
cd1a2927
MT
39else
40 TARGET = $(DIR_INFO)/$(THISAPP)-tools
11af354f 41 PREFIX = /tools
b5548cbb 42 EXTRA_CONFIG = --build=$(BUILDTARGET)
cd1a2927
MT
43endif
44
c356c8ce
AF
45EXTRA_CONFIG += \
46 --prefix=$(PREFIX) \
47 --with-shared \
48 --without-debug \
49 --without-ada \
50 --with-ospeed=unsigned \
51 --with-chtype=long \
52 --enable-hard-tabs \
53 --enable-xmc-glitch \
54 --enable-colorfgbg \
55 --enable-overwrite \
56 --with-termlib=tinfo \
57 --disable-nls
58
cd1a2927
MT
59###############################################################################
60# Top-level Rules
61###############################################################################
62
63objects = $(DL_FILE)
64
65$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
66
c356c8ce 67$(DL_FILE)_MD5 = 8cb9c412e5f2d96bc6f459aa8c6282a1
cd1a2927
MT
68
69install : $(TARGET)
70
71check : $(patsubst %,$(DIR_CHK)/%,$(objects))
72
73download :$(patsubst %,$(DIR_DL)/%,$(objects))
74
75md5 : $(subst %,%_MD5,$(objects))
76
77###############################################################################
78# Downloading, checking, md5sum
79###############################################################################
80
81$(patsubst %,$(DIR_CHK)/%,$(objects)) :
82 @$(CHECK)
83
84$(patsubst %,$(DIR_DL)/%,$(objects)) :
85 @$(LOAD)
86
87$(subst %,%_MD5,$(objects)) :
88 @$(MD5)
89
90###############################################################################
91# Installation Details
92###############################################################################
93
94$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
95 @$(PREBUILD)
96 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
c356c8ce
AF
97 cd $(DIR_APP) && mkdir -pv narrowc widec
98
99 # Build narrowc version.
100 cd $(DIR_APP)/narrowc && ln -svf ../configure .
101 cd $(DIR_APP)/narrowc && ./configure $(EXTRA_CONFIG) --with-ticlib
102 cd $(DIR_APP)/narrowc && make libs
103 cd $(DIR_APP)/narrowc && make -C progs
104
105 # Build widec version.
106 cd $(DIR_APP)/widec && ln -svf ../configure .
107 cd $(DIR_APP)/widec && ./configure $(EXTRA_CONFIG) \
108 --enable-widec --without-progs
109 cd $(DIR_APP)/widec && make libs
110
111 # Install everything.
112 cd $(DIR_APP) && make -C narrowc install.{libs,progs,data}
113 rm -vf $(PREFIX)/lib/libtinfo.*
114 cd $(DIR_APP) && make -C widec install.{libs,includes,man}
115
116 # don't require -ltinfo when linking with --no-add-needed
117 for l in $(PREFIX)/lib/libncurses{,w}.so; do \
118 soname=$$(basename $$(readlink $$l)); \
119 rm -f $$l; \
120 echo "INPUT($$soname -ltinfo)" > $$l; \
dd714b8a 121 done
11af354f 122
c356c8ce
AF
123 rm -vf $(PREFIX)/lib/libcurses{,w}.so
124 echo "INPUT(-lncurses)" > $(PREFIX)/lib/libcurses.so
11af354f 125 echo "INPUT(-lncursesw)" > $(PREFIX)/lib/libcursesw.so
c356c8ce 126 echo "INPUT(-ltinfo)" > $(PREFIX)/lib/libtermcap.so
cd1a2927
MT
127 @rm -rf $(DIR_APP)
128 @$(POSTBUILD)