]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - lfs/squid
Merge remote-tracking branch 'origin/master' into next
[people/pmueller/ipfire-2.x.git] / lfs / squid
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2015 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.4.14
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 = 4e7d7d062159484563ef11f69a0df50a
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-3.4-13228.patch
74 cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/squid-3.4.14-fix-max-file-descriptors.patch
75 cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/squid-3.4-13230.patch
76 cd $(DIR_APP) && autoreconf -vfi
77 cd $(DIR_APP)/libltdl && autoreconf -vfi
78
79 cd $(DIR_APP) && ./configure \
80 --prefix=/usr \
81 --sysconfdir=/etc/squid \
82 --datadir=/usr/lib/squid \
83 --mandir=/usr/share/man \
84 --libexecdir=/usr/lib/squid \
85 --localstatedir=/var \
86 --disable-ipv6 \
87 --disable-ssl \
88 --enable-poll \
89 --disable-icmp \
90 --disable-wccp \
91 --enable-ident-lookups \
92 --enable-storeio="aufs,diskd,ufs" \
93 --enable-underscores \
94 --enable-http-violations \
95 --enable-removal-policies="heap,lru" \
96 --enable-delay-pools \
97 --enable-linux-netfilter \
98 --enable-snmp \
99 --enable-auth \
100 --enable-auth-basic \
101 --enable-auth-digest \
102 --enable-auth-negotiate \
103 --enable-auth-ntlm \
104 --enable-log-daemon-helpers \
105 --enable-url-rewrite-helpers \
106 --enable-build-info \
107 --enable-eui \
108 --with-pthreads \
109 --with-dl \
110 --with-filedescriptors=$$(( 16384 * 64 )) \
111 --with-large-files \
112 --with-aio \
113 --enable-async-io=8 \
114 --enable-unlinkd \
115 --enable-internal-dns \
116 --enable-epoll \
117 --disable-kqueue \
118 --enable-select \
119 --enable-cache-digests \
120 --enable-forw-via-db \
121 --enable-htcp \
122 --enable-kill-parent-hack \
123 --disable-wccpv2 \
124 --enable-icap-client \
125 --disable-esi \
126 --enable-zph-qos \
127 --disable-arch-native
128
129 cd $(DIR_APP) && make $(MAKETUNING)
130 cd $(DIR_APP) && make install
131
132 rm -f /etc/squid/squid.conf
133 ln -sf /var/ipfire/proxy/squid.conf /etc/squid/squid.conf
134 rm -f /etc/squid/cachemgr.conf
135 ln -sf /var/ipfire/proxy/cachemgr.conf /etc/squid/cachemgr.conf
136 rm -f /etc/squid/errors
137 ln -sf /usr/lib/squid/errors/en /etc/squid/errors
138
139 -mkdir -p /var/log/cache /var/log/squid /var/log/updatexlrator
140 touch /var/log/squid/access.log
141 chown -R squid:squid /var/log/squid /var/log/cache /var/log/updatexlrator
142
143 cp /usr/lib/squid/cachemgr.cgi /srv/web/ipfire/cgi-bin/cachemgr.cgi
144 chown nobody.nobody /srv/web/ipfire/cgi-bin/cachemgr.cgi
145
146 cp -f $(DIR_SRC)/config/updxlrator/updxlrator /usr/sbin/updxlrator
147 cp -f $(DIR_SRC)/config/updxlrator/checkup /var/ipfire/updatexlrator/bin/checkup
148 cp -f $(DIR_SRC)/config/updxlrator/download /var/ipfire/updatexlrator/bin/download
149 cp -f $(DIR_SRC)/config/updxlrator/convert /var/ipfire/updatexlrator/bin/convert
150 cp -f $(DIR_SRC)/config/updxlrator/lscache /var/ipfire/updatexlrator/bin/lscache
151 cp -f $(DIR_SRC)/config/updxlrator/checkdeaddl /var/ipfire/updatexlrator/bin/checkdeaddl
152
153 cp -f $(DIR_SRC)/config/updxlrator/updxlrator-lib.pl /var/ipfire/updatexlrator//updxlrator-lib.pl
154
155 chmod 755 /usr/sbin/updxlrator /var/ipfire/updatexlrator/bin/checkup \
156 /var/ipfire/updatexlrator/bin/download \
157 /var/ipfire/updatexlrator/bin/convert \
158 /var/ipfire/updatexlrator/bin/lscache \
159 /var/ipfire/updatexlrator/bin/checkdeaddl
160
161 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.daily
162 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.monthly
163 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.weekly
164
165 chown -R nobody:nobody /var/ipfire/updatexlrator
166 chown nobody.squid /var/updatecache
167 chown nobody.squid /var/updatecache/download
168 chown nobody.squid /var/updatecache/metadata
169 chmod 775 /var/updatecache
170 chmod 775 /var/updatecache/download
171 chmod 775 /var/updatecache/metadata
172 chmod 755 /var/log/updatexlrator
173 chmod 755 /srv/web/ipfire/html/images/updbooster
174
175 chown squid:squid /var/log/squid
176 ln -sf /usr/lib/squid /usr/lib/squid/auth
177 cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac
178 chown nobody.nobody /srv/web/ipfire/html/proxy.pac
179 ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat
180
181 #Copy stylesheets for the errorpages
182 cp -f $(DIR_SRC)/config/proxy/errorpage-ipfire.css /var/ipfire/proxy/
183 cp -f /etc/squid/errorpage.css /var/ipfire/proxy/errorpage-squid.css
184
185 @rm -rf $(DIR_APP)
186 @$(POSTBUILD)