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