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