]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/linux-libc-header
Installer: set gpl_accepted marker after installation.
[people/pmueller/ipfire-2.x.git] / lfs / linux-libc-header
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include Config
26
27 VER = 2.6.12.0
28
29 THISAPP = linux-libc-headers-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33
34 ifeq "$(ROOT)" ""
35 ifeq "$(LFS_PASS)" "install"
36 TARGET = $(DIR_INFO)/$(THISAPP)-install
37 else
38 TARGET = $(DIR_INFO)/$(THISAPP)
39 endif
40 else
41 TARGET = $(DIR_INFO)/$(THISAPP)-tools1
42 endif
43
44 ###############################################################################
45 # Top-level Rules
46 ###############################################################################
47 objects = $(DL_FILE)
48
49 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
50
51 $(DL_FILE)_MD5 = eae2f562afe224ad50f65a6acfb4252c
52
53 install : $(TARGET)
54
55 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57 download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
59 md5 : $(subst %,%_MD5,$(objects))
60
61 ###############################################################################
62 # Downloading, checking, md5sum
63 ###############################################################################
64
65 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
66 @$(CHECK)
67
68 $(patsubst %,$(DIR_DL)/%,$(objects)) :
69 @$(LOAD)
70
71 $(subst %,%_MD5,$(objects)) :
72 @$(MD5)
73
74 ###############################################################################
75 # Installation Details
76 ###############################################################################
77
78 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
79 @$(PREBUILD)
80 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
81 ifeq "$(ROOT)" ""
82 ifeq "$(LFS_PASS)" "install"
83 -mkdir -p /opt/$(MACHINE)-uClibc
84 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-inotify-3.patch
85 cd $(DIR_APP) && install -dv /opt/$(MACHINE)-uClibc/usr/include/asm
86 cd $(DIR_APP) && cp -Rv include/asm-i386/* /opt/$(MACHINE)-uClibc/usr/include/asm
87 cd $(DIR_APP) && cp -Rv include/linux /opt/$(MACHINE)-uClibc/usr/include
88 cd $(DIR_APP) && chown -Rv root:root /opt/$(MACHINE)-uClibc/usr/include/{asm,linux}
89 cd $(DIR_APP) && find /opt/$(MACHINE)-uClibc/usr/include/{asm,linux} -type d -exec chmod -v 755 {} \;
90 cd $(DIR_APP) && find /opt/$(MACHINE)-uClibc/usr/include/{asm,linux} -type f -exec chmod -v 644 {} \;
91 else
92 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/$(THISAPP)-inotify-3.patch
93 cd $(DIR_APP) && install -dv /usr/include/asm
94 cd $(DIR_APP) && cp -Rv include/asm-i386/* /usr/include/asm
95 cd $(DIR_APP) && cp -Rv include/linux /usr/include
96 cd $(DIR_APP) && chown -Rv root:root /usr/include/{asm,linux}
97 cd $(DIR_APP) && find /usr/include/{asm,linux} -type d -exec chmod -v 755 {} \;
98 cd $(DIR_APP) && find /usr/include/{asm,linux} -type f -exec chmod -v 644 {} \;
99 endif
100 else
101 cd $(DIR_APP) && cp -Rv include/asm-i386 /tools/include/asm
102 cd $(DIR_APP) && cp -Rv include/linux /tools/include
103 endif
104 @rm -rf $(DIR_APP)
105 @$(POSTBUILD)