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