]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/Config
Start Core Update 94
[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
cd1a2927
MT
33# URLs that are common sources of downloads. If you're having trouble with
34# a site you should change its URL to that of a suitable mirror site.
35#
2b074aea 36URL_IPFIRE = http://source.ipfire.org/source-2.x
b72fd0e4 37URL_TOOLCHAIN = http://source.ipfire.org/toolchains
661d9388 38URL_SOURCE = source.ipfire.org:/pub/source/source-2.x
cd1a2927 39
cd1a2927
MT
40# Don't change this; it will be overridden by other makefiles where necessary.
41#
42ROOT =
43
44# For most packages tarballs are unpacked here and then deleted after
45# installation.
46#
47DIR_SRC = $(ROOT)/usr/src
48
49# Files are downloaded into DIR_TMP and then moved to DIR_DL, to avoid
50# messes with partially retrieved files. DIR_DL is where we will
51# save all the files that are downloaded. DIR_INFO contains the
52# file lists of installed packages.
53#
54DIR_DL = $(LFS_BASEDIR)/cache
55DIR_CHK = $(LFS_BASEDIR)/cache/check
3796e3d5 56DIR_CONF = $(LFS_BASEDIR)/config
cd1a2927 57DIR_INFO = $(LFS_BASEDIR)/log
05207d69 58DIR_TMP = /tmp
cd1a2927 59
cd1a2927
MT
60###############################################################################
61# Common Macro Definitions
62###############################################################################
63
64# For each package we create a list of files that it installed under
65# log/<TARGET> name. Modified files are not identified
66#
67define FIND_FILES
68 cd $(ROOT)/ && find -mount \
b8e2d108 69 -not -path './tools*' -not -path './tmp*' -not -path './usr/src*' -not -path './run/*' \
e21bd39e 70 -not -path './dev*' -not -path './proc*' -not -path './install*' | sort
cd1a2927
MT
71endef
72
73# This is common starting logic for builds.
74#
75ifeq "$(ROOT)" ""
76define PREBUILD
77 echo "====================================== Installing $(THISAPP) ..."
78 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
79 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
03ad5f93
MT
80 # Fix installation on partial rebuild, so modules install where they should
81 # and not everytime on the last compiled kernel
82 if [ -f $(DIR_SRC)/linux-$(KVER) ]; then \
fdf0c7c1
AF
83 cd $(DIR_SRC)/linux-$(KVER) && \
84 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire$(KCFG)+' Makefile; \
03ad5f93 85 fi
cd1a2927
MT
86endef
87else
88define PREBUILD
89 echo "====================================== Installing $(THISAPP) ..."
90endef
91endif
92
93# Common end-of-installation logic for Stage 2 and beyond.
94#
95ifeq "$(ROOT)" ""
96define POSTBUILD
f5ad8f59
MT
97 @echo "Updating linker cache..."
98 @type -p ldconfig >/dev/null && ldconfig || :
03ad5f93 99 @echo "Install done; saving file list to $(TARGET) ..."
cd1a2927 100 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
e21bd39e 101 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' > $(TARGET)_diff
cd1a2927
MT
102 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
103 @rm -f $(DIR_SRC)/lsalrnew
0145f271 104 sed -i -e 's+.\/++' $(TARGET)_diff
cd1a2927
MT
105 # compare roofile ( same name as lfs script) with the list of installed files
106 # special cases
03ad5f93 107 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
0145f271 108 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
03ad5f93
MT
109 # $(TARGET)_diff : result of the diff
110 # ROOTFILE : reference of include/exclude files
111 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
112 # $(TARGET) : log result with {commented|include|added} files
0145f271 113 if [ -s "$(TARGET)_diff" ]; then \
fdf0c7c1 114 LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))$(KCFG); \
03ad5f93 115 echo $(LFS_SCRIPT); \
56c997b2 116 ROOTFILE=$$(find $(DIR_SRC)/config/rootfiles/{common,packages}/{$(MACHINE),} -maxdepth 1 -type f -name $$LFS_SCRIPT 2>/dev/null | head -1); \
03ad5f93
MT
117 if [ "$$ROOTFILE" = "" ]; then \
118 touch $(TARGET)_missing_rootfile; \
119 ROOTFILE=$(TARGET)_missing_rootfile ; \
120 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
121 fi; \
1b453c76 122 sed -e "s/BUILDTARGET/$(BUILDTARGET)/g" -e "s/KVER/$(KVER)/g" -e "s/MACHINE/$(MACHINE)/g" $$ROOTFILE > $(TARGET)_rootfile; \
0145f271 123 for line in `cat $(TARGET)_diff`; do \
c9444dcf
AF
124 if grep -qG "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
125 elif grep -qG "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
cd1a2927
MT
126 else echo "+$$line" >> $(TARGET); \
127 fi; \
128 done; \
0f3c1311
AF
129 for line in `grep -v "^#" $(TARGET)_rootfile`; do \
130 if ! grep -qG "^$$line$$" $(TARGET)_diff ; then echo "-$$line" >> $(TARGET); \
131 fi; \
132 done; \
0145f271 133 rm -f $(TARGET)_rootfile; \
cd1a2927
MT
134 else \
135 touch $(TARGET); \
136 fi
0145f271 137 @rm -f $(TARGET)_diff
cd1a2927
MT
138endef
139else
140define POSTBUILD
141 @echo "===================================== Install done for $(THISAPP)."
142 touch $(TARGET)
143endef
144endif
145
146define CHECK
147 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
319d3289 148 wget -T 120 -t 1 --spider -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O /dev/null
cd1a2927
MT
149 @touch $(DIR_CHK)/$(notdir $@)
150endef
151
152define LOAD
153 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
e99d32db 154 wget -T 60 -t 1 -nv -U "IPFireSourceGrabber/2.x" $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
cd1a2927
MT
155 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
156 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
157endef
158
159define MD5
160 # error mean file signature don't match the one in lfs script
161 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
162 echo "$@ checksum OK"
0145f271 163 echo "$@" >>$(DIR_INFO)/_build.othersrc-list.log
cd1a2927 164endef
a8b159e7
MT
165
166define PAK
5c8cfc99 167 # Bringing the files to their right place.
5b2a12ff 168 @rm -rf /install/packages/package
d12153b0 169 @mkdir -p /install/packages/package/tmp
4c7fa778 170 if [ -e "/usr/src/src/paks/$(PROG)" ]; then \
3489ebac
MT
171 cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /usr/src/src/paks/$(PROG)/update.sh \
172 /install/packages/package; \
173 else \
174 cp -f /usr/src/src/paks/default/{,un}install.sh /usr/src/src/paks/default/update.sh \
175 /install/packages/package; \
176 fi
5596077b
MT
177 for i in $(DIR_SRC)/config/rootfiles/packages/{$(MACHINE),}/$(PROG); do \
178 if [ -e "$${i}" ]; then \
179 cp -v $${i} /install/packages/package/ROOTFILES; \
180 break; \
181 fi; \
182 done
1b453c76 183 sed -e 's/BUILDTARGET/$(BUILDTARGET)/g' -e 's/KVER/$(KVER)/g' -e 's/MACHINE/$(MACHINE)/g' -i /install/packages/package/ROOTFILES
45e5371d 184 sed -e 's/xxxKVERxxx/$(KVER)/g' -i /install/packages/package/install.sh
99e6df8e 185 chmod 755 /install/packages/package/{{,un}install,update}.sh
d12153b0 186 cd / && tar cf /install/packages/package/files.tmp --files-from=/install/packages/package/ROOTFILES --exclude='#*' \
c0faa0ef 187 -p --numeric-owner
d12153b0
AF
188 # Double tar to remove double files
189 tar xf /install/packages/package/files.tmp -C /install/packages/package/tmp/ \
c0faa0ef 190 -p --numeric-owner
d12153b0 191 rm -f /install/packages/package/files.tmp
f83650a1 192 cd /install/packages/package/tmp/ && tar -c -p --numeric-owner -J -f /install/packages/package/files.tar.xz *
d12153b0 193 rm -r /install/packages/package/tmp
08fc1a19
AF
194 -cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES.tmp
195 mv /install/packages/package/ROOTFILES.tmp /install/packages/package/ROOTFILES
7d3af7f7 196 cd /install/packages/package && tar cf ../$(PROG)-$(VER)-$(PAK_VER).ipfire --files-from=/usr/src/src/paks/files
cab737ed 197 rm -rf /install/packages/package
5c8cfc99
MT
198 sed -e s/NAME/$(PROG)/g \
199 -e s/VER/$(VER)/g \
200 -e s/RELEASE/$(PAK_VER)/g \
201 -e s/DEPS/$(DEPS)/g \
38965639 202 -e s/SIZE/`ls -l \/install\/packages\/$(PROG)-$(VER)-$(PAK_VER).ipfire | awk '{ print $$5 }'`/g \
5c8cfc99 203 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
a8b159e7 204endef