]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/squid
suricata: Change midstream policy to "pass-flow"
[ipfire-2.x.git] / lfs / squid
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
8c2109bc 4# Copyright (C) 2007-2024 IPFire Team <info@ipfire.org> #
70df8302
MT
5# #
6# This program is free software: you can redistribute it and/or modify #
cd1a2927 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
cd1a2927
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
cd1a2927
MT
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 #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
cd1a2927 18# #
cd1a2927
MT
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
9612bc11 27VER = 6.8
cd1a2927
MT
28
29THISAPP = squid-$(VER)
754f508b 30DL_FILE = $(THISAPP).tar.xz
e383179b 31DL_FROM = $(URL_IPFIRE)
cd1a2927
MT
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
34
11b5e5cb
AF
35CXXFLAGS+= -Wno-error=format-truncation
36
abde7323
MT
37ifeq "$(BUILD_ARCH)" "riscv64"
38 LDFLAGS += -latomic
39endif
40
cd1a2927
MT
41###############################################################################
42# Top-level Rules
43###############################################################################
44
34a9705d 45objects = $(DL_FILE)
cd1a2927 46
34a9705d 47$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
cd1a2927 48
9612bc11 49$(DL_FILE)_BLAKE2 = 771de358d395a6b4bb5d94b02325755d1ba891c24f2cc1bdc80d91a73467a475c2cb7f0e1c24aed2f714c0de38858a24ac3864a5b772b6828beeb014da827d9d
cd1a2927
MT
50
51install : $(TARGET)
52
53check : $(patsubst %,$(DIR_CHK)/%,$(objects))
54
55download :$(patsubst %,$(DIR_DL)/%,$(objects))
56
9a7e4d85 57b2 : $(subst %,%_BLAKE2,$(objects))
cd1a2927
MT
58
59###############################################################################
9a7e4d85 60# Downloading, checking, b2sum
cd1a2927 61###############################################################################
6bd4bcda 62
cd1a2927
MT
63$(patsubst %,$(DIR_CHK)/%,$(objects)) :
64 @$(CHECK)
65
66$(patsubst %,$(DIR_DL)/%,$(objects)) :
67 @$(LOAD)
68
9a7e4d85
PM
69$(subst %,%_BLAKE2,$(objects)) :
70 @$(B2SUM)
cd1a2927
MT
71
72###############################################################################
73# Installation Details
74###############################################################################
75
76$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
77 @$(PREBUILD)
754f508b 78 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xaf $(DIR_DL)/$(DL_FILE)
198c3926 79
bbca73d4
MF
80 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/squid/01_squid-gcc11.patch
81
02a60a9b
MT
82 cd $(DIR_APP) && autoreconf -vfi
83 cd $(DIR_APP)/libltdl && autoreconf -vfi
84
bf62652e
MT
85 cd $(DIR_APP) && CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
86 LDFLAGS="$(LDFLAGS)" ./configure \
754f508b
MT
87 --prefix=/usr \
88 --sysconfdir=/etc/squid \
89 --datadir=/usr/lib/squid \
90 --mandir=/usr/share/man \
91 --libexecdir=/usr/lib/squid \
92 --localstatedir=/var \
88b1e637 93 --disable-ssl \
754f508b
MT
94 --disable-icmp \
95 --disable-wccp \
198c3926
MF
96 --disable-wccpv2 \
97 --disable-kqueue \
98 --disable-esi \
99 --disable-arch-native \
3196d226 100 --disable-strict-error-checking \
198c3926 101 --enable-poll \
754f508b 102 --enable-ident-lookups \
efccb433 103 --enable-storeio=aufs,diskd,ufs \
754f508b
MT
104 --enable-underscores \
105 --enable-http-violations \
efccb433 106 --enable-removal-policies=heap,lru \
754f508b
MT
107 --enable-delay-pools \
108 --enable-linux-netfilter \
109 --enable-snmp \
110 --enable-auth \
111 --enable-auth-basic \
112 --enable-auth-digest \
113 --enable-auth-negotiate \
114 --enable-auth-ntlm \
115 --enable-log-daemon-helpers \
116 --enable-url-rewrite-helpers \
117 --enable-build-info \
118 --enable-eui \
198c3926 119 --enable-async-io=16 \
4fe645df 120 --enable-translation \
754f508b
MT
121 --enable-unlinkd \
122 --enable-internal-dns \
123 --enable-epoll \
754f508b
MT
124 --enable-select \
125 --enable-cache-digests \
126 --enable-forw-via-db \
127 --enable-htcp \
754f508b 128 --enable-kill-parent-hack \
754f508b 129 --enable-icap-client \
69a324f0 130 --enable-zph-qos \
198c3926 131 --with-dl \
a2bcb413
MF
132 --with-large-files \
133 --without-gnutls \
134 --without-netfilter-conntrack
ed38f89d 135
fd3e7da0 136 cd $(DIR_APP) && make $(MAKETUNING)
cd1a2927
MT
137 cd $(DIR_APP) && make install
138
139 rm -f /etc/squid/squid.conf
46c01c09 140 ln -sf /var/ipfire/proxy/squid.conf /etc/squid/squid.conf
fe1656d2
CS
141 rm -f /etc/squid/cachemgr.conf
142 ln -sf /var/ipfire/proxy/cachemgr.conf /etc/squid/cachemgr.conf
cd1a2927 143 rm -f /etc/squid/errors
d4c6ba21 144 ln -sf /usr/lib/squid/errors/en /etc/squid/errors
cd1a2927 145
46c01c09 146 -mkdir -p /var/log/cache /var/log/squid /var/log/updatexlrator
cd1a2927 147 touch /var/log/squid/access.log
46c01c09
MT
148 chown -R squid:squid /var/log/squid /var/log/cache /var/log/updatexlrator
149
fe1656d2 150 cp /usr/lib/squid/cachemgr.cgi /srv/web/ipfire/cgi-bin/cachemgr.cgi
f2ccb35f 151 chown root:root /srv/web/ipfire/cgi-bin/cachemgr.cgi
fe1656d2 152
46c01c09
MT
153 cp -f $(DIR_SRC)/config/updxlrator/updxlrator /usr/sbin/updxlrator
154 cp -f $(DIR_SRC)/config/updxlrator/checkup /var/ipfire/updatexlrator/bin/checkup
155 cp -f $(DIR_SRC)/config/updxlrator/download /var/ipfire/updatexlrator/bin/download
e79f3ac0
AF
156 cp -f $(DIR_SRC)/config/updxlrator/convert /var/ipfire/updatexlrator/bin/convert
157 cp -f $(DIR_SRC)/config/updxlrator/lscache /var/ipfire/updatexlrator/bin/lscache
4f4092e3
CS
158 cp -f $(DIR_SRC)/config/updxlrator/checkdeaddl /var/ipfire/updatexlrator/bin/checkdeaddl
159
bffe0abd 160 cp -f $(DIR_SRC)/config/updxlrator/updxlrator-lib.pl /var/ipfire/updatexlrator/updxlrator-lib.pl
5ae664e1 161
46c01c09 162 chmod 755 /usr/sbin/updxlrator /var/ipfire/updatexlrator/bin/checkup \
5ae664e1
AF
163 /var/ipfire/updatexlrator/bin/download \
164 /var/ipfire/updatexlrator/bin/convert \
4f4092e3
CS
165 /var/ipfire/updatexlrator/bin/lscache \
166 /var/ipfire/updatexlrator/bin/checkdeaddl
46c01c09 167
09eb4f00
MT
168 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.daily
169 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.monthly
170 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.weekly
46c01c09
MT
171
172 chown -R nobody:nobody /var/ipfire/updatexlrator
859100c5 173 chown -R root:root /var/ipfire/updatexlrator/bin
362c5537 174 chown root:root /var/ipfire/updatexlrator/updxlrator-lib.pl
5db10f47
AF
175 chown nobody.squid /var/updatecache
176 chown nobody.squid /var/updatecache/download
177 chown nobody.squid /var/updatecache/metadata
178 chmod 775 /var/updatecache
179 chmod 775 /var/updatecache/download
180 chmod 775 /var/updatecache/metadata
46c01c09 181 chmod 755 /var/log/updatexlrator
bd24e1fa 182 chmod 755 /srv/web/ipfire/html/images/updbooster
66c36198 183
b4f8d26c
MT
184 chown squid:squid /var/log/squid
185 ln -sf /usr/lib/squid /usr/lib/squid/auth
268292e7
CS
186 cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac
187 chown nobody.nobody /srv/web/ipfire/html/proxy.pac
b4f8d26c 188 ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat
46c01c09 189
859100c5 190 # Copy stylesheets for the errorpages
ab4a5a35
AF
191 cp -f $(DIR_SRC)/config/proxy/errorpage-ipfire.css /var/ipfire/proxy/
192 cp -f /etc/squid/errorpage.css /var/ipfire/proxy/errorpage-squid.css
193
cd1a2927
MT
194 @rm -rf $(DIR_APP)
195 @$(POSTBUILD)