]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/squid
kernel: update to 4.14.120
[ipfire-2.x.git] / lfs / squid
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2019 IPFire Team <info@ipfire.org> #
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 = 4.6
28
29 THISAPP = squid-$(VER)
30 DL_FILE = $(THISAPP).tar.xz
31 DL_FROM = $(URL_IPFIRE)
32 DIR_APP = $(DIR_SRC)/$(THISAPP)
33 TARGET = $(DIR_INFO)/$(THISAPP)
34
35 CXXFLAGS+= -Wno-error=format-truncation
36
37 ifeq "$(BUILD_ARCH)" "armv5tel"
38 LDFLAGS += -latomic
39 endif
40
41 ###############################################################################
42 # Top-level Rules
43 ###############################################################################
44
45 objects = $(DL_FILE)
46
47 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
48
49 $(DL_FILE)_MD5 = e25e7cc37754ad14d8aa368c0c210e54
50
51 install : $(TARGET)
52
53 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
54
55 download :$(patsubst %,$(DIR_DL)/%,$(objects))
56
57 md5 : $(subst %,%_MD5,$(objects))
58
59 ###############################################################################
60 # Downloading, checking, md5sum
61 ###############################################################################
62
63 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
64 @$(CHECK)
65
66 $(patsubst %,$(DIR_DL)/%,$(objects)) :
67 @$(LOAD)
68
69 $(subst %,%_MD5,$(objects)) :
70 @$(MD5)
71
72 ###############################################################################
73 # Installation Details
74 ###############################################################################
75
76 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
77 @$(PREBUILD)
78 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xaf $(DIR_DL)/$(DL_FILE)
79 cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/squid/squid-4.6-fix-max-file-descriptors.patch
80
81 cd $(DIR_APP) && autoreconf -vfi
82 cd $(DIR_APP)/libltdl && autoreconf -vfi
83
84 cd $(DIR_APP) && CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
85 LDFLAGS="$(LDFLAGS)" ./configure \
86 --prefix=/usr \
87 --sysconfdir=/etc/squid \
88 --datadir=/usr/lib/squid \
89 --mandir=/usr/share/man \
90 --libexecdir=/usr/lib/squid \
91 --localstatedir=/var \
92 --disable-ssl \
93 --disable-icmp \
94 --disable-wccp \
95 --disable-wccpv2 \
96 --disable-kqueue \
97 --disable-esi \
98 --disable-arch-native \
99 --enable-poll \
100 --enable-ident-lookups \
101 --enable-storeio=aufs,diskd,ufs \
102 --enable-underscores \
103 --enable-http-violations \
104 --enable-removal-policies=heap,lru \
105 --enable-delay-pools \
106 --enable-linux-netfilter \
107 --enable-snmp \
108 --enable-auth \
109 --enable-auth-basic \
110 --enable-auth-digest \
111 --enable-auth-negotiate \
112 --enable-auth-ntlm \
113 --enable-log-daemon-helpers \
114 --enable-url-rewrite-helpers \
115 --enable-build-info \
116 --enable-eui \
117 --enable-async-io=16 \
118 --enable-unlinkd \
119 --enable-internal-dns \
120 --enable-epoll \
121 --enable-select \
122 --enable-cache-digests \
123 --enable-forw-via-db \
124 --enable-htcp \
125 --enable-kill-parent-hack \
126 --enable-icap-client \
127 --enable-zph-qos \
128 --with-dl \
129 --with-filedescriptors=$$(( 16384 * 64 )) \
130 --with-large-files \
131 --without-gnutls \
132 --without-netfilter-conntrack
133
134 cd $(DIR_APP) && make $(MAKETUNING)
135 cd $(DIR_APP) && make install
136
137 rm -f /etc/squid/squid.conf
138 ln -sf /var/ipfire/proxy/squid.conf /etc/squid/squid.conf
139 rm -f /etc/squid/cachemgr.conf
140 ln -sf /var/ipfire/proxy/cachemgr.conf /etc/squid/cachemgr.conf
141 rm -f /etc/squid/errors
142 ln -sf /usr/lib/squid/errors/en /etc/squid/errors
143
144 -mkdir -p /var/log/cache /var/log/squid /var/log/updatexlrator
145 touch /var/log/squid/access.log
146 chown -R squid:squid /var/log/squid /var/log/cache /var/log/updatexlrator
147
148 cp /usr/lib/squid/cachemgr.cgi /srv/web/ipfire/cgi-bin/cachemgr.cgi
149 chown nobody.nobody /srv/web/ipfire/cgi-bin/cachemgr.cgi
150
151 cp -f $(DIR_SRC)/config/updxlrator/updxlrator /usr/sbin/updxlrator
152 cp -f $(DIR_SRC)/config/updxlrator/checkup /var/ipfire/updatexlrator/bin/checkup
153 cp -f $(DIR_SRC)/config/updxlrator/download /var/ipfire/updatexlrator/bin/download
154 cp -f $(DIR_SRC)/config/updxlrator/convert /var/ipfire/updatexlrator/bin/convert
155 cp -f $(DIR_SRC)/config/updxlrator/lscache /var/ipfire/updatexlrator/bin/lscache
156 cp -f $(DIR_SRC)/config/updxlrator/checkdeaddl /var/ipfire/updatexlrator/bin/checkdeaddl
157
158 cp -f $(DIR_SRC)/config/updxlrator/updxlrator-lib.pl /var/ipfire/updatexlrator/updxlrator-lib.pl
159
160 chmod 755 /usr/sbin/updxlrator /var/ipfire/updatexlrator/bin/checkup \
161 /var/ipfire/updatexlrator/bin/download \
162 /var/ipfire/updatexlrator/bin/convert \
163 /var/ipfire/updatexlrator/bin/lscache \
164 /var/ipfire/updatexlrator/bin/checkdeaddl
165
166 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.daily
167 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.monthly
168 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.weekly
169
170 chown -R nobody:nobody /var/ipfire/updatexlrator
171 chown nobody.squid /var/updatecache
172 chown nobody.squid /var/updatecache/download
173 chown nobody.squid /var/updatecache/metadata
174 chmod 775 /var/updatecache
175 chmod 775 /var/updatecache/download
176 chmod 775 /var/updatecache/metadata
177 chmod 755 /var/log/updatexlrator
178 chmod 755 /srv/web/ipfire/html/images/updbooster
179
180 chown squid:squid /var/log/squid
181 ln -sf /usr/lib/squid /usr/lib/squid/auth
182 cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac
183 chown nobody.nobody /srv/web/ipfire/html/proxy.pac
184 ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat
185
186 #Copy stylesheets for the errorpages
187 cp -f $(DIR_SRC)/config/proxy/errorpage-ipfire.css /var/ipfire/proxy/
188 cp -f /etc/squid/errorpage.css /var/ipfire/proxy/errorpage-squid.css
189
190 @rm -rf $(DIR_APP)
191 @$(POSTBUILD)