]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - lfs/glibc
tzdata: New package.
[people/teissler/ipfire-2.x.git] / lfs / glibc
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 ifeq "$(MACHINE_TYPE)" "arm"
28 VER = 2.5
29 else
30 VER = 2.3.6
31 endif
32
33 THISAPP = glibc-$(VER)
34 DL_FILE = $(THISAPP).tar.bz2
35 DL_FROM = $(URL_IPFIRE)
36 DIR_APP = $(DIR_SRC)/$(THISAPP)
37
38 # Normal build or /tools build.
39 #
40 ifeq "$(ROOT)" ""
41 TARGET = $(DIR_INFO)/$(THISAPP)
42 EXTRA_CONFIG = --prefix=/usr \
43 --disable-profile --enable-add-ons \
44 --enable-kernel=2.6.0 --libexecdir=/usr/lib/glibc
45 EXTRA_MAKE =
46 EXTRA_INSTALL =
47 else
48 TARGET = $(DIR_INFO)/$(THISAPP)-tools
49 EXTRA_CONFIG = --prefix=/tools \
50 --disable-profile --enable-add-ons \
51 --enable-kernel=2.6.0 --with-binutils=/tools/bin \
52 --without-gd --with-headers=/tools/include \
53 --without-selinux
54 EXTRA_MAKE =
55 EXTRA_INSTALL =
56 endif
57
58 ifeq "$(MACHINE_TYPE)" "arm"
59 # Disable hardware FP for ARM.
60 EXTRA_CONFIG += \
61 --build=arm \
62 --host=$(BUILDTARGET) \
63 --without-fp
64 else
65 EXTRA_CONFIG += --build=$(BUILDTARGET)
66 endif
67
68 ###############################################################################
69 # Top-level Rules
70 ###############################################################################
71
72 objects = $(DL_FILE) \
73 glibc-libidn-$(VER).tar.bz2
74
75 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
76 glibc-libidn-$(VER).tar.bz2 = $(DL_FROM)/glibc-libidn-$(VER).tar.bz2
77
78 ifeq "$(MACHINE_TYPE)" "arm"
79 $(DL_FILE)_MD5 = 1fb29764a6a650a4d5b409dda227ac9f
80 glibc-libidn-$(VER).tar.bz2_MD5 = 8787868ba8962d9b125997ec2f25ac01
81 else
82 $(DL_FILE)_MD5 = bfdce99f82d6dbcb64b7f11c05d6bc96
83 glibc-libidn-$(VER).tar.bz2_MD5 = 49dbe06ce830fc73874d6b38bdc5b4db
84 endif
85
86 # ARM needs glibc-ports
87 ifeq "$(MACHINE_TYPE)" "arm"
88 objects += glibc-ports-$(VER).tar.bz2
89 glibc-ports-$(VER).tar.bz2 = $(DL_FROM)/glibc-ports-$(VER).tar.bz2
90 glibc-ports-$(VER).tar.bz2_MD5 = 183f6d46e8fa5e4b2aff240ab1586c2e
91 endif
92
93 install : $(TARGET)
94
95 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
96
97 download :$(patsubst %,$(DIR_DL)/%,$(objects))
98
99 md5 : $(subst %,%_MD5,$(objects))
100
101 ###############################################################################
102 # Downloading, checking, md5sum
103 ###############################################################################
104
105 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
106 @$(CHECK)
107
108 $(patsubst %,$(DIR_DL)/%,$(objects)) :
109 @$(LOAD)
110
111 $(subst %,%_MD5,$(objects)) :
112 @$(MD5)
113
114 ###############################################################################
115 # Installation Details
116 ###############################################################################
117
118 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
119 @$(PREBUILD)
120 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
121 @mkdir $(DIR_SRC)/glibc-build
122 ifeq "$(MACHINE_TYPE)" "arm"
123 cd $(DIR_APP) && tar jxf $(DIR_DL)/glibc-ports-$(VER).tar.bz2
124 cd $(DIR_APP) && mv -v glibc-ports-$(VER) ports
125
126 cd $(DIR_APP)/ports && patch -Np1 -i $(DIR_SRC)/src/patches/glibc-ports-avoid-using-asm-procinfo.patch
127
128 # asm/page.h should not be included in sysdeps/unix/sysv/linux/arm/ioperm.c.
129 cd $(DIR_APP) && sed "/asm\/page.h/d" -i ports/sysdeps/unix/sysv/linux/arm/ioperm.c
130 else
131 cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/$(THISAPP)-dont_use_origin_on_privil_exec.patch
132 endif
133
134 ifeq "$(ROOT)" ""
135 ifeq "$(MACHINE)" "i586"
136 cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/$(THISAPP)-linux_types-1.patch
137 cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/$(THISAPP)-inotify-1.patch
138 endif
139 # This locale causes a loop on bash login - exclude it
140 cd $(DIR_APP) && sed -i '/vi_VN.TCVN/d' localedata/SUPPORTED
141 ifeq "$(MACHINE_TYPE)" "arm"
142 cd $(DIR_APP) && sed -i 's|libs -o|libs -L/usr/lib -Wl,-dynamic-linker=/lib/ld-linux.so.3 -o|' \
143 scripts/test-installation.pl
144 else
145 cd $(DIR_APP) && sed -i 's|libs -o|libs -L/usr/lib -Wl,-dynamic-linker=/lib/ld-linux.so.2 -o|' \
146 scripts/test-installation.pl
147 endif
148 endif
149 cd $(DIR_SRC)/glibc-build && CFLAGS="$(CFLAGS)" $(DIR_APP)/configure $(EXTRA_CONFIG)
150
151 ifeq "$(ROOT)" ""
152 touch /etc/ld.so.conf
153 cd $(DIR_SRC)/glibc-build && make $(MAKETUNING) $(EXTRA_MAKE)
154 cd $(DIR_SRC)/glibc-build && make $(EXTRA_INSTALL) install
155 ifeq "$(MACHINE)" "i586"
156 cp -v $(DIR_APP)/sysdeps/unix/sysv/linux/inotify.h /usr/include/sys
157 endif
158 else
159 -mkdir /tools/etc
160 touch /tools/etc/ld.so.conf
161 cd $(DIR_SRC)/glibc-build && make $(MAKETUNING) $(EXTRA_MAKE)
162 cd $(DIR_SRC)/glibc-build && make $(EXTRA_INSTALL) install
163 endif
164
165 # Creating the locales
166 ifeq "$(ROOT)" ""
167 mkdir -p /usr/lib/locale
168 cd $(DIR_SRC)/glibc-build && localedef -i en_US -f ISO-8859-1 en_US
169 cd $(DIR_SRC)/glibc-build && localedef -i en_US -f UTF-8 en_US.utf8
170 ifneq "$(MACHINE_TYPE)" "arm"
171 cp -f /usr/share/zoneinfo/GMT /etc/localtime
172 endif
173 endif
174 @rm -rf $(DIR_APP) $(DIR_SRC)/glibc-build
175 @$(POSTBUILD)