]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/Config
make.sh: Cleanup of polluted environment
[ipfire-2.x.git] / lfs / Config
CommitLineData
cd1a2927
MT
1###############################################################################
2# LFSMake #
3# by Rod Roark <rod@sunsetsystems.com> #
4# #
5# Copyright (C) 2002 Rod Roark #
6# #
7# See http://www.lfsmake.org/ for the most current standard version. #
8# #
9# These Makefiles are made available under the terms of the Artistic License, #
10# found at http://www.opensource.org/licenses/artistic-license.html. #
11###############################################################################
12
70df8302
MT
13###############################################################################
14# #
15# IPFire.org - A linux based firewall #
16# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
17# #
18# This program is free software: you can redistribute it and/or modify #
19# it under the terms of the GNU General Public License as published by #
20# the Free Software Foundation, either version 3 of the License, or #
21# (at your option) any later version. #
22# #
23# This program is distributed in the hope that it will be useful, #
24# but WITHOUT ANY WARRANTY; without even the implied warranty of #
25# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
26# GNU General Public License for more details. #
27# #
28# You should have received a copy of the GNU General Public License #
29# along with this program. If not, see <http://www.gnu.org/licenses/>. #
30# #
31###############################################################################
32
dc7d6b20
MT
33# Cleanup environment from any variables
34unexport BUILD_ARCH BUILD_PLATFORM BUILDTARGET CROSSTARGET TOOLCHAIN
35
cd1a2927
MT
36# URLs that are common sources of downloads. If you're having trouble with
37# a site you should change its URL to that of a suitable mirror site.
38#
2b074aea 39URL_IPFIRE = http://source.ipfire.org/source-2.x
b72fd0e4 40URL_TOOLCHAIN = http://source.ipfire.org/toolchains
8a148bbc 41URL_SOURCE = git.ipfire.org:/pub/sources/source-2.x
cd1a2927 42
cd1a2927
MT
43# Don't change this; it will be overridden by other makefiles where necessary.
44#
45ROOT =
46
47# For most packages tarballs are unpacked here and then deleted after
48# installation.
49#
50DIR_SRC = $(ROOT)/usr/src
51
52# Files are downloaded into DIR_TMP and then moved to DIR_DL, to avoid
53# messes with partially retrieved files. DIR_DL is where we will
54# save all the files that are downloaded. DIR_INFO contains the
55# file lists of installed packages.
56#
57DIR_DL = $(LFS_BASEDIR)/cache
58DIR_CHK = $(LFS_BASEDIR)/cache/check
3796e3d5 59DIR_CONF = $(LFS_BASEDIR)/config
cd1a2927 60DIR_INFO = $(LFS_BASEDIR)/log
05207d69 61DIR_TMP = /tmp
cd1a2927 62
1d9be34e
MT
63# Add the compiler location and version and specs to the ccache hash
64CCACHE_COMPILERCHECK += $(shell gcc -dumpspecs 2>/dev/null | md5sum | cut -d ' ' -f1)
65
cd1a2927
MT
66###############################################################################
67# Common Macro Definitions
68###############################################################################
69
70# For each package we create a list of files that it installed under
71# log/<TARGET> name. Modified files are not identified
72#
73define FIND_FILES
74 cd $(ROOT)/ && find -mount \
1b169a72
MT
75 \( -path './tools' -or -path './tmp' -or -path './usr/src' \
76 -or -path './run' -or -path './dev' -or -path './proc' \
77 -or -path './install' \) -prune -or -print | sort
cd1a2927
MT
78endef
79
80# This is common starting logic for builds.
81#
82ifeq "$(ROOT)" ""
83define PREBUILD
84 echo "====================================== Installing $(THISAPP) ..."
85 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
86 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
03ad5f93
MT
87 # Fix installation on partial rebuild, so modules install where they should
88 # and not everytime on the last compiled kernel
89 if [ -f $(DIR_SRC)/linux-$(KVER) ]; then \
fdf0c7c1
AF
90 cd $(DIR_SRC)/linux-$(KVER) && \
91 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire$(KCFG)+' Makefile; \
03ad5f93 92 fi
cd1a2927
MT
93endef
94else
95define PREBUILD
96 echo "====================================== Installing $(THISAPP) ..."
97endef
98endif
99
100# Common end-of-installation logic for Stage 2 and beyond.
101#
102ifeq "$(ROOT)" ""
103define POSTBUILD
f5ad8f59
MT
104 @echo "Updating linker cache..."
105 @type -p ldconfig >/dev/null && ldconfig || :
03ad5f93 106 @echo "Install done; saving file list to $(TARGET) ..."
cd1a2927 107 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
e21bd39e 108 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' > $(TARGET)_diff
cd1a2927
MT
109 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
110 @rm -f $(DIR_SRC)/lsalrnew
0145f271 111 sed -i -e 's+.\/++' $(TARGET)_diff
cd1a2927
MT
112 # compare roofile ( same name as lfs script) with the list of installed files
113 # special cases
03ad5f93 114 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
0145f271 115 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
03ad5f93
MT
116 # $(TARGET)_diff : result of the diff
117 # ROOTFILE : reference of include/exclude files
118 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
119 # $(TARGET) : log result with {commented|include|added} files
0145f271 120 if [ -s "$(TARGET)_diff" ]; then \
fdf0c7c1 121 LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))$(KCFG); \
03ad5f93 122 echo $(LFS_SCRIPT); \
dc7d6b20 123 ROOTFILE=$$(find $(DIR_SRC)/config/rootfiles/{common,packages}/{$(BUILD_ARCH),} -maxdepth 1 -type f -name $$LFS_SCRIPT 2>/dev/null | head -1); \
03ad5f93
MT
124 if [ "$$ROOTFILE" = "" ]; then \
125 touch $(TARGET)_missing_rootfile; \
126 ROOTFILE=$(TARGET)_missing_rootfile ; \
127 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
128 fi; \
dc7d6b20 129 sed -e "s/BUILDTARGET/$(BUILDTARGET)/g" -e "s/KVER/$(KVER)/g" -e "s/MACHINE/$(BUILD_ARCH)/g" $$ROOTFILE > $(TARGET)_rootfile; \
0145f271 130 for line in `cat $(TARGET)_diff`; do \
c9444dcf
AF
131 if grep -qG "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
132 elif grep -qG "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
cd1a2927
MT
133 else echo "+$$line" >> $(TARGET); \
134 fi; \
135 done; \
0f3c1311
AF
136 for line in `grep -v "^#" $(TARGET)_rootfile`; do \
137 if ! grep -qG "^$$line$$" $(TARGET)_diff ; then echo "-$$line" >> $(TARGET); \
138 fi; \
139 done; \
0145f271 140 rm -f $(TARGET)_rootfile; \
cd1a2927
MT
141 else \
142 touch $(TARGET); \
143 fi
0145f271 144 @rm -f $(TARGET)_diff
cd1a2927
MT
145endef
146else
147define POSTBUILD
148 @echo "===================================== Install done for $(THISAPP)."
149 touch $(TARGET)
150endef
151endif
152
153define CHECK
154 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
319d3289 155 wget -T 120 -t 1 --spider -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O /dev/null
cd1a2927
MT
156 @touch $(DIR_CHK)/$(notdir $@)
157endef
158
159define LOAD
160 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
e99d32db 161 wget -T 60 -t 1 -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
cd1a2927
MT
162 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
163 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
164endef
165
166define MD5
167 # error mean file signature don't match the one in lfs script
168 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
169 echo "$@ checksum OK"
0145f271 170 echo "$@" >>$(DIR_INFO)/_build.othersrc-list.log
cd1a2927 171endef
a8b159e7
MT
172
173define PAK
5c8cfc99 174 # Bringing the files to their right place.
5b2a12ff 175 @rm -rf /install/packages/package
d12153b0 176 @mkdir -p /install/packages/package/tmp
4c7fa778 177 if [ -e "/usr/src/src/paks/$(PROG)" ]; then \
3489ebac
MT
178 cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /usr/src/src/paks/$(PROG)/update.sh \
179 /install/packages/package; \
180 else \
181 cp -f /usr/src/src/paks/default/{,un}install.sh /usr/src/src/paks/default/update.sh \
182 /install/packages/package; \
183 fi
dc7d6b20 184 for i in $(DIR_SRC)/config/rootfiles/packages/{$(BUILD_ARCH),}/$(PROG); do \
5596077b
MT
185 if [ -e "$${i}" ]; then \
186 cp -v $${i} /install/packages/package/ROOTFILES; \
187 break; \
188 fi; \
189 done
dc7d6b20 190 sed -e 's/BUILDTARGET/$(BUILDTARGET)/g' -e 's/KVER/$(KVER)/g' -e 's/MACHINE/$(BUILD_ARCH)/g' -i /install/packages/package/ROOTFILES
45e5371d 191 sed -e 's/xxxKVERxxx/$(KVER)/g' -i /install/packages/package/install.sh
99e6df8e 192 chmod 755 /install/packages/package/{{,un}install,update}.sh
d12153b0 193 cd / && tar cf /install/packages/package/files.tmp --files-from=/install/packages/package/ROOTFILES --exclude='#*' \
c0faa0ef 194 -p --numeric-owner
d12153b0
AF
195 # Double tar to remove double files
196 tar xf /install/packages/package/files.tmp -C /install/packages/package/tmp/ \
c0faa0ef 197 -p --numeric-owner
d12153b0 198 rm -f /install/packages/package/files.tmp
f83650a1 199 cd /install/packages/package/tmp/ && tar -c -p --numeric-owner -J -f /install/packages/package/files.tar.xz *
d12153b0 200 rm -r /install/packages/package/tmp
08fc1a19
AF
201 -cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES.tmp
202 mv /install/packages/package/ROOTFILES.tmp /install/packages/package/ROOTFILES
7d3af7f7 203 cd /install/packages/package && tar cf ../$(PROG)-$(VER)-$(PAK_VER).ipfire --files-from=/usr/src/src/paks/files
cab737ed 204 rm -rf /install/packages/package
5c8cfc99
MT
205 sed -e s/NAME/$(PROG)/g \
206 -e s/VER/$(VER)/g \
207 -e s/RELEASE/$(PAK_VER)/g \
208 -e s/DEPS/$(DEPS)/g \
38965639 209 -e s/SIZE/`ls -l \/install\/packages\/$(PROG)-$(VER)-$(PAK_VER).ipfire | awk '{ print $$5 }'`/g \
5c8cfc99 210 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
a8b159e7 211endef
38888b3d
JS
212
213define INSTALL_INITSCRIPT
214 install -m 754 -v $(DIR_SRC)/src/initscripts/packages/$(1) /etc/rc.d/init.d/$(1)
215endef
216
217test:
218 $(call INSTALL_INITSCRIPT,hostapd)