]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/Config
Timectrl geschrieben.
[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
13# URLs that are common sources of downloads. If you're having trouble with
14# a site you should change its URL to that of a suitable mirror site.
15#
c7845ac1
MT
16URL_IPFIRE = http://source.ipfire.org/othersrc
17URL_TOOLCHAIN = http://source.ipfire.org/toolchain
e9a97e8e 18URL_IPCOP = http://ipcop.ath.cx
cd1a2927
MT
19
20# Default compiler optimizations.
21#
22FLAGS_OPT = -O2
23FLAGS_CPU = -mcpu=$(MACHINE)
24FLAGS_ARCH = -march=$(MACHINE)
25
26# Don't change this; it will be overridden by other makefiles where necessary.
27#
28ROOT =
29
30# For most packages tarballs are unpacked here and then deleted after
31# installation.
32#
33DIR_SRC = $(ROOT)/usr/src
34
35# Files are downloaded into DIR_TMP and then moved to DIR_DL, to avoid
36# messes with partially retrieved files. DIR_DL is where we will
37# save all the files that are downloaded. DIR_INFO contains the
38# file lists of installed packages.
39#
40DIR_DL = $(LFS_BASEDIR)/cache
41DIR_CHK = $(LFS_BASEDIR)/cache/check
3796e3d5 42DIR_CONF = $(LFS_BASEDIR)/config
cd1a2927 43DIR_INFO = $(LFS_BASEDIR)/log
05207d69 44DIR_TMP = /tmp
cd1a2927 45
03ad5f93 46KGCC = gcc
cd1a2927
MT
47
48###############################################################################
49# Common Macro Definitions
50###############################################################################
51
52# For each package we create a list of files that it installed under
53# log/<TARGET> name. Modified files are not identified
54#
55define FIND_FILES
56 cd $(ROOT)/ && find -mount \
57 -not -path './tools*' -not -path './tmp*' -not -path './usr/src*' \
58 -not -path './dev*' -not -path './proc*' -not -path './install*'
59endef
60
61# This is common starting logic for builds.
62#
63ifeq "$(ROOT)" ""
64define PREBUILD
65 echo "====================================== Installing $(THISAPP) ..."
66 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
67 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
03ad5f93
MT
68 # Fix installation on partial rebuild, so modules install where they should
69 # and not everytime on the last compiled kernel
70 if [ -f $(DIR_SRC)/linux-$(KVER) ]; then \
71 if [ "$(SMP)" = "" ]; then \
72 cd $(DIR_SRC)/linux-$(KVER) && \
73 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))+' Makefile; \
74 else \
75 cd $(DIR_SRC)/linux-$(KVER) && \
76 sed -i -e 's+^EXTRAVERSION.*$$+EXTRAVERSION\ =\ $(word 4,$(subst ., .,$(KVER)))-smp+' Makefile; \
77 fi; \
78 fi
cd1a2927
MT
79endef
80else
81define PREBUILD
82 echo "====================================== Installing $(THISAPP) ..."
83endef
84endif
85
86# Common end-of-installation logic for Stage 2 and beyond.
87#
88ifeq "$(ROOT)" ""
89define POSTBUILD
03ad5f93 90 @echo "Install done; saving file list to $(TARGET) ..."
cd1a2927 91 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
0145f271 92 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' | sort > $(TARGET)_diff
cd1a2927
MT
93 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
94 @rm -f $(DIR_SRC)/lsalrnew
0145f271 95 sed -i -e 's+.\/++' $(TARGET)_diff
cd1a2927
MT
96 # compare roofile ( same name as lfs script) with the list of installed files
97 # special cases
03ad5f93 98 # - if the corresponding rootfile is not found, touch $(TARGET)_missing_rootfile
0145f271 99 # - on a partial rebuild without a new file inside TARGET_diff, just touch TARGET
03ad5f93
MT
100 # $(TARGET)_diff : result of the diff
101 # ROOTFILE : reference of include/exclude files
102 # $(TARGET)_rootfile : ROOTFILE with KVER replacement
103 # $(TARGET) : log result with {commented|include|added} files
0145f271 104 if [ -s "$(TARGET)_diff" ]; then \
03ad5f93
MT
105 if [ "$(PASS)" = "SMP" ]; then LFS_SCRIPT=$(firstword $(MAKEFILE_LIST))-smp; \
106 else LFS_SCRIPT=$(firstword $(MAKEFILE_LIST)); \
107 fi; \
108 echo $(LFS_SCRIPT); \
109 ROOTFILE=`find $(DIR_SRC)/config/rootfiles/common -maxdepth 1 -type f -name $$LFS_SCRIPT`; \
110 if [ "$$ROOTFILE" = "" ]; then \
111 ROOTFILE=`find $(DIR_SRC)/config/rootfiles/ver_$(IPFVER) -type f -name $$LFS_SCRIPT`; \
112 fi; \
113 if [ "$$ROOTFILE" = "" ]; then \
114 touch $(TARGET)_missing_rootfile; \
115 ROOTFILE=$(TARGET)_missing_rootfile ; \
116 echo "error $$LFS_SCRIPT not found in config/rootfiles"; \
117 fi; \
0145f271
MT
118 sed "s/KVER/$(KVER)/g" $$ROOTFILE > $(TARGET)_rootfile; \
119 for line in `cat $(TARGET)_diff`; do \
03ad5f93 120 if grep -qE "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \
0145f271 121 elif grep -qE "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \
cd1a2927
MT
122 else echo "+$$line" >> $(TARGET); \
123 fi; \
124 done; \
0145f271 125 rm -f $(TARGET)_rootfile; \
cd1a2927
MT
126 else \
127 touch $(TARGET); \
128 fi
0145f271 129 @rm -f $(TARGET)_diff
cd1a2927
MT
130endef
131else
132define POSTBUILD
133 @echo "===================================== Install done for $(THISAPP)."
134 touch $(TARGET)
135endef
136endif
137
138define CHECK
139 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
140 wget -T 120 -t 1 --spider -nv $($(notdir $@)) -O /dev/null
141 @touch $(DIR_CHK)/$(notdir $@)
142endef
143
144define LOAD
145 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
8a13df72 146 wget -T 60 -t 1 -c -nv $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
cd1a2927
MT
147 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
148 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
149endef
150
151define MD5
152 # error mean file signature don't match the one in lfs script
153 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
154 echo "$@ checksum OK"
0145f271 155 echo "$@" >>$(DIR_INFO)/_build.othersrc-list.log
cd1a2927 156endef
a8b159e7
MT
157
158define PAK
5c8cfc99
MT
159 # Bringing the files to their right place.
160 @rm -rf /install/packages/package /tmp/* /packagetmp.tar
161 @mkdir -p /install/packages/package
162 @cp -f /usr/src/src/paks/$(PROG)/{,un}install.sh /install/packages/package
163 @cp -f /usr/src/src/paks/$(PROG)/update.sh /install/packages/package
164 @cp -f /usr/src/config/rootfiles/packages/$(PROG) /install/packages/package/ROOTFILES
165 @chmod 755 /install/packages/package/{,un}install.sh
166 cd / && tar --create --directory=/ --files-from=/install/packages/package/ROOTFILES \
167 --file=/packagetmp.tar --exclude='#*'
168 cd / && tar -x -C /tmp -f /packagetmp.tar
cab737ed 169 rm -f /packagetmp.tar
f8f8a98c 170 -cd /tmp && tar cjvf /install/packages/package/files.tbz2 *
cab737ed
MT
171 cd / && rm -rf /tmp/*
172 cd /install/packages/package && cat ROOTFILES | grep -v "#" > ROOTFILES
38965639 173 cd /install/packages/package && tar cfj ../$(PROG)-$(VER)-$(PAK_VER).ipfire \
5c8cfc99 174 files.tbz2 install.sh uninstall.sh update.sh ROOTFILES
cab737ed 175 rm -rf /install/packages/package
5c8cfc99
MT
176 sed -e s/NAME/$(PROG)/g \
177 -e s/VER/$(VER)/g \
178 -e s/RELEASE/$(PAK_VER)/g \
179 -e s/DEPS/$(DEPS)/g \
180 -e s/DESCDE/$(DESCDE)/g \
181 -e s/DESCEN/$(DESCEN)/g \
38965639 182 -e s/SIZE/`ls -l \/install\/packages\/$(PROG)-$(VER)-$(PAK_VER).ipfire | awk '{ print $$5 }'`/g \
5c8cfc99 183 < /usr/src/src/pakfire/meta > /install/packages/meta-$(PROG)
a8b159e7 184endef