]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blob - lfs/ncurses
Changed name to IPFire-3.0-alpha1 (Lechery).
[people/arne_f/ipfire-3.x.git] / lfs / ncurses
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
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 #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 PKG_NAME = ncurses
28 PKG_VER = 5.7
29
30 THISAPP = $(PKG_NAME)-$(PKG_VER)
31 DL_FILE = $(THISAPP).tar.gz
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
35
36 ###############################################################################
37 # Top-level Rules
38 ###############################################################################
39
40 objects = $(DL_FILE) $(THISAPP)-coverity_fixes-1.patch
41
42 install : $(OBJECT)
43
44 download : $(objects)
45
46 $(objects) :
47 @$(LOAD)
48
49 ###############################################################################
50 # Installation Details
51 ###############################################################################
52
53 $(OBJECT) :
54 @$(PREBUILD)
55 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
56
57 ifeq "$(STAGE)" "toolchain"
58 # We need wide character support for the Linux kernel menuconfig.
59 # --enable-symlinks installs the 'tic' program as a symbolic link (why not).
60 # --disable-root-environ restricts some environment variables, like TERMINFO,
61 # when running as root, so it can not be customized (why not).
62 cd $(DIR_APP) && \
63 ./configure \
64 $(CONFIGURE_ARCH) \
65 --prefix=$(TOOLS_DIR) \
66 --with-shared \
67 --without-debug \
68 --without-ada \
69 --enable-overwrite \
70 --enable-widec \
71 --without-cxx-binding \
72 --enable-symlinks \
73 --disable-root-environ
74 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
75 cd $(DIR_APP) && make install
76 for lib in curses ncurses form panel menu; do \
77 rm -vf $(TOOLS_DIR)/lib/lib$${lib}.so ; \
78 echo "INPUT(-l$${lib}w)" >$(TOOLS_DIR)/lib/lib$${lib}.so ; \
79 ln -sfv lib$${lib}w.a $(TOOLS_DIR)/lib/lib$${lib}.a ; \
80 done
81 endif
82
83 ifeq "$(STAGE)" "base"
84 cd $(DIR_APP) && \
85 ./configure \
86 $(CONFIGURE_ARCH) \
87 --prefix=/usr \
88 --with-shared \
89 --without-debug \
90 --enable-widec \
91 #--disable-static
92
93 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
94 cd $(DIR_APP) && make install
95
96 chmod -v 644 /usr/lib/libncurses++w.a
97 mv -v /usr/lib/libncursesw.so.5* /lib
98 ln -sfv ../../lib/libncursesw.so.5 /usr/lib/libncursesw.so
99 for lib in curses ncurses form panel menu; do \
100 rm -vf /usr/lib/lib$${lib}.so ; \
101 echo "INPUT(-l$${lib}w)" >/usr/lib/lib$${lib}.so ; \
102 ln -sfv lib$${lib}w.a /usr/lib/lib$${lib}.a ; \
103 done
104 ln -sfv libncurses++w.a /usr/lib/libncurses++.a
105
106 rm -vf /usr/lib/libcursesw.so
107 echo "INPUT(-lncursesw)" >/usr/lib/libcursesw.so
108 ln -sfv libncurses.so /usr/lib/libcurses.so
109 ln -sfv libncursesw.a /usr/lib/libcursesw.a
110 ln -sfv libncurses.a /usr/lib/libcurses.a
111 endif
112
113 @rm -rf $(DIR_APP)
114 @$(POSTBUILD)