]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/Config
Updated asterisk package.
[people/pmueller/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#
c7845ac1 36URL_IPFIRE = http://source.ipfire.org/othersrc
b72fd0e4 37URL_TOOLCHAIN = http://source.ipfire.org/toolchains
cd1a2927
MT
38
39# Default compiler optimizations.
40#
41FLAGS_OPT = -O2
42FLAGS_CPU = -mcpu=$(MACHINE)
43FLAGS_ARCH = -march=$(MACHINE)
44
45# Don't change this; it will be overridden by other makefiles where necessary.
46#
47ROOT =
48
49# For most packages tarballs are unpacked here and then deleted after
50# installation.
51#
52DIR_SRC = $(ROOT)/usr/src
53
54# Files are downloaded into DIR_TMP and then moved to DIR_DL, to avoid
55# messes with partially retrieved files. DIR_DL is where we will
56# save all the files that are downloaded. DIR_INFO contains the
57# file lists of installed packages.
58#
59DIR_DL = $(LFS_BASEDIR)/cache
60DIR_CHK = $(LFS_BASEDIR)/cache/check
3796e3d5 61DIR_CONF = $(LFS_BASEDIR)/config
cd1a2927 62DIR_INFO = $(LFS_BASEDIR)/log
05207d69 63DIR_TMP = /tmp
cd1a2927 64
03ad5f93 65KGCC = gcc
cd1a2927
MT
66
67###############################################################################
68# Common Macro Definitions
69###############################################################################
70
71# For each package we create a list of files that it installed under
72# log/<TARGET> name. Modified files are not identified
73#
74define FIND_FILES
75 cd $(ROOT)/ && find -mount \
76 -not -path './tools*' -not -path './tmp*' -not -path './usr/src*' \
77 -not -path './dev*' -not -path './proc*' -not -path './install*'
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 \
90 if [ "$(SMP)" = "" ]; then \
91 cd $(DIR_SRC)/linux-$(KVER) && \
1b273e8f 92 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire+' Makefile; \
03ad5f93
MT
93 else \
94 cd $(DIR_SRC)/linux-$(KVER) && \
1b273e8f 95 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-ipfire-smp+' Makefile; \
03ad5f93
MT
96 fi; \
97 fi
cd1a2927
MT
98endef
99else
100define PREBUILD
101 echo "====================================== Installing $(THISAPP) ..."
102endef
103endif
104
105# Common end-of-installation logic for Stage 2 and beyond.
106#
107ifeq "$(ROOT)" ""
108define POSTBUILD
03ad5f93 109 @echo "Install done; saving file list to $(TARGET) ..."
cd1a2927 110 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
0145f271 111 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' | sort > $(TARGET)_diff
cd1a2927
MT
112 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
113 @rm -f $(DIR_SRC)/lsalrnew
0145f271 114 sed -i -e 's+.\/++' $(TARGET)_diff
cd1a2927
MT
115 # compare roofile ( same name as lfs script) with the list of installed files
116 # special cases
03ad5f93 117 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
0145f271 118 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
03ad5f93
MT
119 # $(TARGET)_diff : result of the diff
120 # ROOTFILE : reference of include/exclude files
121 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
122 # $(TARGET) : log result with {commented|include|added} files
0145f271 123 if [ -s "$(TARGET)_diff" ]; then \
03ad5f93
MT
124 if [ "$(PASS)" = "SMP" ]; then LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))-smp; \
125 else LFS_SCRIPT=$(firstword $(MAKEFILE_LIST)); \
126 fi; \
127 echo $(LFS_SCRIPT); \
a7ec5407 128 ROOTFILE=`find $(DIR_SRC)/config/rootfiles/common $(DIR_SRC)/config/rootfiles/packages -maxdepth 1 -type f -name $$LFS_SCRIPT`; \
03ad5f93
MT
129 if [ "$$ROOTFILE" = "" ]; then \
130 ROOTFILE=`find $(DIR_SRC)/config/rootfiles/ver_$(IPFVER) -type f -name $$LFS_SCRIPT`; \
131 fi; \
132 if [ "$$ROOTFILE" = "" ]; then \
133 touch $(TARGET)_missing_rootfile; \
134 ROOTFILE=$(TARGET)_missing_rootfile ; \
135 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
136 fi; \
0145f271
MT
137 sed "s/KVER/$(KVER)/g" $$ROOTFILE > $(TARGET)_rootfile; \
138 for line in `cat $(TARGET)_diff`; do \
03ad5f93 139 if grep -qE "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
0145f271 140 elif grep -qE "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
cd1a2927
MT
141 else echo "+$$line" >> $(TARGET); \
142 fi; \
143 done; \
0145f271 144 rm -f $(TARGET)_rootfile; \
cd1a2927
MT
145 else \
146 touch $(TARGET); \
147 fi
0145f271 148 @rm -f $(TARGET)_diff
cd1a2927
MT
149endef
150else
151define POSTBUILD
152 @echo "===================================== Install done for $(THISAPP)."
153 touch $(TARGET)
154endef
155endif
156
157define CHECK
158 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
159 wget -T 120 -t 1 --spider -nv $($(notdir $@)) -O /dev/null
160 @touch $(DIR_CHK)/$(notdir $@)
161endef
162
163define LOAD
164 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
8a13df72 165 wget -T 60 -t 1 -c -nv $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
cd1a2927
MT
166 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
167 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
168endef
169
170define MD5
171 # error mean file signature don't match the one in lfs script
172 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
173 echo "$@ checksum OK"
0145f271 174 echo "$@" >>$(DIR_INFO)/_build.othersrc-list.log
cd1a2927 175endef
a8b159e7
MT
176
177define PAK
5c8cfc99 178 # Bringing the files to their right place.
5b2a12ff 179 @rm -rf /install/packages/package
5c8cfc99 180 @mkdir -p /install/packages/package
4c7fa778 181 if [ -e "/usr/src/src/paks/$(PROG)" ]; then \
3489ebac
MT
182 cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /usr/src/src/paks/$(PROG)/update.sh \
183 /install/packages/package; \
184 else \
185 cp -f /usr/src/src/paks/default/{,un}install.sh /usr/src/src/paks/default/update.sh \
186 /install/packages/package; \
187 fi
2cb46e81
MT
188 cp -v /usr/src/config/rootfiles/packages/$(PROG) /install/packages/package/ROOTFILES
189 sed -e 's/KVER/$(KVER)/g' -i /install/packages/package/ROOTFILES
99e6df8e 190 chmod 755 /install/packages/package/{{,un}install,update}.sh
fc4ac7ac
MT
191 cd / && tar cf /install/packages/package/files --files-from=/install/packages/package/ROOTFILES --exclude='#*' \
192 --preserve --numeric-owner
08fc1a19
AF
193 -cat /install/packages/package/ROOTFILES | grep -v "#" > /install/packages/package/ROOTFILES.tmp
194 mv /install/packages/package/ROOTFILES.tmp /install/packages/package/ROOTFILES
7d3af7f7 195 cd /install/packages/package && tar cf ../$(PROG)-$(VER)-$(PAK_VER).ipfire --files-from=/usr/src/src/paks/files
cab737ed 196 rm -rf /install/packages/package
5c8cfc99
MT
197 sed -e s/NAME/$(PROG)/g \
198 -e s/VER/$(VER)/g \
199 -e s/RELEASE/$(PAK_VER)/g \
200 -e s/DEPS/$(DEPS)/g \
38965639 201 -e s/SIZE/`ls -l \/install\/packages\/$(PROG)-$(VER)-$(PAK_VER).ipfire | awk '{ print $$5 }'`/g \
5c8cfc99 202 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
a8b159e7 203endef