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