]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/Config
GeƤndert:
[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 # 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 #
16 URL_CPAN = http://www.cpan.org/modules/by-module
17 URL_AGNU = ftp://alpha.gnu.org/gnu
18 URL_DEBIAN = http://http.us.debian.org/debian/pool/main
19 URL_GNU = http://ftp.gnu.org/gnu
20 URL_KERNEL = http://www.kernel.org/pub
21 URL_TUE = ftp://ftp.win.tue.nl/pub
22 URL_LFS_FTP = http://ftp.at.linuxfromscratch.org/pub/lfs/lfs-packages/5.1.1
23 URL_LFS = http://www.linuxfromscratch.org/patches/downloads
24 URL_SFNET = http://kent.dl.sourceforge.net/sourceforge
25 URL_IPFIRE = http://mirror.ipfire.org/source
26 URL_IPCOP = http://ipcop.ath.cx
27
28 # Default compiler optimizations.
29 #
30 FLAGS_OPT = -O2
31 FLAGS_CPU = -mcpu=$(MACHINE)
32 FLAGS_ARCH = -march=$(MACHINE)
33
34 # Don't change this; it will be overridden by other makefiles where necessary.
35 #
36 ROOT =
37
38 # For most packages tarballs are unpacked here and then deleted after
39 # installation.
40 #
41 DIR_SRC = $(ROOT)/usr/src
42
43 # Files are downloaded into DIR_TMP and then moved to DIR_DL, to avoid
44 # messes with partially retrieved files. DIR_DL is where we will
45 # save all the files that are downloaded. DIR_INFO contains the
46 # file lists of installed packages.
47 #
48 DIR_DL = $(LFS_BASEDIR)/cache
49 DIR_CHK = $(LFS_BASEDIR)/cache/check
50 DIR_CONF = $(LFS_BASEDIR)/config
51 DIR_INFO = $(LFS_BASEDIR)/log
52 DIR_TMP = /var/tmp
53
54 KGCC = ccache /usr/bin/gcc
55
56 ###############################################################################
57 # Common Macro Definitions
58 ###############################################################################
59
60 # For each package we create a list of files that it installed under
61 # log/<TARGET> name. Modified files are not identified
62 #
63 define FIND_FILES
64 cd $(ROOT)/ && find -mount \
65 -not -path './tools*' -not -path './tmp*' -not -path './usr/src*' \
66 -not -path './dev*' -not -path './proc*' -not -path './install*'
67 endef
68
69 # This is common starting logic for builds.
70 #
71 ifeq "$(ROOT)" ""
72 define PREBUILD
73 echo "====================================== Installing $(THISAPP) ..."
74 @echo "Install started; saving file list to $(DIR_SRC)/lsalr ..."
75 @if [ ! -f $(DIR_SRC)/lsalr ]; then $(FIND_FILES) > $(DIR_SRC)/lsalr; fi
76 endef
77 else
78 define PREBUILD
79 echo "====================================== Installing $(THISAPP) ..."
80 endef
81 endif
82
83 # Common end-of-installation logic for Stage 2 and beyond.
84 #
85 ifeq "$(ROOT)" ""
86 define POSTBUILD
87 @echo "Install done; saving file list to $(DIR_INFO)/$(THISAPP) ..."
88 @$(FIND_FILES) > $(DIR_SRC)/lsalrnew
89 @diff $(DIR_SRC)/lsalr $(DIR_SRC)/lsalrnew | grep '^> ' | sed 's/^> //' | sort > $(TARGET)_1
90 @cp -f $(DIR_SRC)/lsalrnew $(DIR_SRC)/lsalr
91 @rm -f $(DIR_SRC)/lsalrnew
92 sed -i -e 's+.\/++' $(TARGET)_1
93 # compare roofile ( same name as lfs script) with the list of installed files
94 # special cases
95 # - on a partial rebuild without a new file inside TARGET_1, just touch TARGET
96 if [ -s "$(TARGET)_1" ]; then \
97 ROOTFILE=$(DIR_SRC)/src/ROOTFILES.$(MACHINE); \
98 for line in `cat $(TARGET)_1`; do \
99 if grep -qE "^#$$line$$" $$ROOTFILE ; then echo "#$$line" >> $(TARGET); \
100 elif grep -qE "^$$line$$" $$ROOTFILE ; then echo "$$line" >> $(TARGET); \
101 else echo "+$$line" >> $(TARGET); \
102 fi; \
103 done; \
104 else \
105 touch $(TARGET); \
106 fi
107 @rm -f $(TARGET)_1
108 endef
109 else
110 define POSTBUILD
111 @echo "===================================== Install done for $(THISAPP)."
112 touch $(TARGET)
113 endef
114 endif
115
116 define CHECK
117 @echo -e "$(MESSAGE)Check: $($(notdir $@))"
118 wget -T 120 -t 1 --spider -nv $($(notdir $@)) -O /dev/null
119 @touch $(DIR_CHK)/$(notdir $@)
120 endef
121
122 define LOAD
123 @echo -e "$(MESSAGE)Download: $($(notdir $@))"
124 wget -T 60 -t 1 -c -nv $($(notdir $@)) -O $(DIR_TMP)/$(notdir $@)
125 [ "$($(notdir $@)_MD5)" = `md5sum $(DIR_TMP)/$(notdir $@) | awk '{ print $$1 }'` ] # detect page not found answer
126 mv $(DIR_TMP)/$(notdir $@) $(DIR_DL)
127 endef
128
129 define MD5
130 # error mean file signature don't match the one in lfs script
131 [ "$($@_MD5)" = `md5sum $(DIR_DL)/$@ | awk '{ print $$1 }'` ]
132 echo "$@ checksum OK"
133 endef
134
135 define PAK
136 @rm -rf /install/packages/package /tmp/* /packagetmp.tar
137 cd /
138 mkdir -p /install/packages/package
139 cp -f $(DIR_SRC)/src/paks/$(PROG)/{,un}install.sh /install/packages/package
140 cp -f $(DIR_SRC)/src/paks/$(PROG)/ROOTFILES /install/packages/package
141 chmod 755 /install/packages/package/{,un}install.sh
142 tar --create -C / --files-from=/install/packages/package/ROOTFILES -f /packagetmp.tar --exclude='#*'
143 tar -x -C /tmp -f /packagetmp.tar
144 @rm -f /packagetmp.tar
145 @cd /tmp && tar zcf /install/packages/package/files.tgz * && rm -rf *
146 cd /install/packages/package && cat ROOTFILES | grep -v "#" > ROOTFILES && tar cfz ../$(THISAPP)-$(PAK_VER).tar.gz files.tgz install.sh uninstall.sh ROOTFILES
147 cd /install/packages && md5sum $(THISAPP)-$(PAK_VER).tar.gz > $(THISAPP)-$(PAK_VER).tar.gz.md5
148 @rm -rf /install/packages/package
149 endef