]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/squid
libnet: Keep the version number in source tarball filename
[ipfire-2.x.git] / lfs / squid
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302 3# IPFire.org - A linux based firewall #
5971e9a1 4# Copyright (C) 2007-2012 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
49c3105c 27VER = 3.4.13
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
35###############################################################################
36# Top-level Rules
37###############################################################################
38
363fb6af 39objects = $(DL_FILE)
cd1a2927
MT
40
41$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
42
49c3105c 43$(DL_FILE)_MD5 = a5f6c978b2d7a99b161c8275e1acb470
cd1a2927
MT
44
45install : $(TARGET)
46
47check : $(patsubst %,$(DIR_CHK)/%,$(objects))
48
49download :$(patsubst %,$(DIR_DL)/%,$(objects))
50
51md5 : $(subst %,%_MD5,$(objects))
52
53###############################################################################
54# Downloading, checking, md5sum
55###############################################################################
6bd4bcda 56
cd1a2927
MT
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)
754f508b
MT
72 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xaf $(DIR_DL)/$(DL_FILE)
73 cd $(DIR_APP) && ./configure \
74 --prefix=/usr \
75 --sysconfdir=/etc/squid \
76 --datadir=/usr/lib/squid \
77 --mandir=/usr/share/man \
78 --libexecdir=/usr/lib/squid \
79 --localstatedir=/var \
80 --disable-ipv6 \
88b1e637 81 --disable-ssl \
754f508b
MT
82 --enable-poll \
83 --disable-icmp \
84 --disable-wccp \
85 --enable-ident-lookups \
86 --enable-storeio="aufs,diskd,ufs" \
754f508b
MT
87 --enable-underscores \
88 --enable-http-violations \
89 --enable-removal-policies="heap,lru" \
90 --enable-delay-pools \
91 --enable-linux-netfilter \
92 --enable-snmp \
93 --enable-auth \
94 --enable-auth-basic \
95 --enable-auth-digest \
96 --enable-auth-negotiate \
97 --enable-auth-ntlm \
98 --enable-log-daemon-helpers \
99 --enable-url-rewrite-helpers \
100 --enable-build-info \
101 --enable-eui \
102 --with-pthreads \
103 --with-dl \
4f160f04 104 --with-filedescriptors=$$(( 16384 * 64 )) \
754f508b
MT
105 --with-large-files \
106 --with-aio \
107 --enable-async-io=8 \
108 --enable-unlinkd \
109 --enable-internal-dns \
110 --enable-epoll \
111 --disable-kqueue \
112 --enable-select \
113 --enable-cache-digests \
114 --enable-forw-via-db \
115 --enable-htcp \
6f49e32b 116 --enable-linux-netfilter \
754f508b
MT
117 --enable-kill-parent-hack \
118 --disable-wccpv2 \
119 --enable-icap-client \
abfd82b1 120 --disable-esi \
69a324f0
MT
121 --enable-zph-qos \
122 --disable-arch-native
ed38f89d 123
fd3e7da0 124 cd $(DIR_APP) && make $(MAKETUNING)
cd1a2927
MT
125 cd $(DIR_APP) && make install
126
127 rm -f /etc/squid/squid.conf
46c01c09 128 ln -sf /var/ipfire/proxy/squid.conf /etc/squid/squid.conf
fe1656d2
CS
129 rm -f /etc/squid/cachemgr.conf
130 ln -sf /var/ipfire/proxy/cachemgr.conf /etc/squid/cachemgr.conf
cd1a2927 131 rm -f /etc/squid/errors
d4c6ba21 132 ln -sf /usr/lib/squid/errors/en /etc/squid/errors
cd1a2927 133
46c01c09 134 -mkdir -p /var/log/cache /var/log/squid /var/log/updatexlrator
cd1a2927 135 touch /var/log/squid/access.log
46c01c09
MT
136 chown -R squid:squid /var/log/squid /var/log/cache /var/log/updatexlrator
137
fe1656d2
CS
138 cp /usr/lib/squid/cachemgr.cgi /srv/web/ipfire/cgi-bin/cachemgr.cgi
139 chown nobody.nobody /srv/web/ipfire/cgi-bin/cachemgr.cgi
140
46c01c09
MT
141 cp -f $(DIR_SRC)/config/updxlrator/updxlrator /usr/sbin/updxlrator
142 cp -f $(DIR_SRC)/config/updxlrator/checkup /var/ipfire/updatexlrator/bin/checkup
143 cp -f $(DIR_SRC)/config/updxlrator/download /var/ipfire/updatexlrator/bin/download
e79f3ac0
AF
144 cp -f $(DIR_SRC)/config/updxlrator/convert /var/ipfire/updatexlrator/bin/convert
145 cp -f $(DIR_SRC)/config/updxlrator/lscache /var/ipfire/updatexlrator/bin/lscache
4f4092e3
CS
146 cp -f $(DIR_SRC)/config/updxlrator/checkdeaddl /var/ipfire/updatexlrator/bin/checkdeaddl
147
148 cp -f $(DIR_SRC)/config/updxlrator/updxlrator-lib.pl /var/ipfire/updatexlrator//updxlrator-lib.pl
5ae664e1 149
46c01c09 150 chmod 755 /usr/sbin/updxlrator /var/ipfire/updatexlrator/bin/checkup \
5ae664e1
AF
151 /var/ipfire/updatexlrator/bin/download \
152 /var/ipfire/updatexlrator/bin/convert \
4f4092e3
CS
153 /var/ipfire/updatexlrator/bin/lscache \
154 /var/ipfire/updatexlrator/bin/checkdeaddl
46c01c09 155
09eb4f00
MT
156 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.daily
157 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.monthly
158 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.weekly
46c01c09
MT
159
160 chown -R nobody:nobody /var/ipfire/updatexlrator
5db10f47
AF
161 chown nobody.squid /var/updatecache
162 chown nobody.squid /var/updatecache/download
163 chown nobody.squid /var/updatecache/metadata
164 chmod 775 /var/updatecache
165 chmod 775 /var/updatecache/download
166 chmod 775 /var/updatecache/metadata
46c01c09 167 chmod 755 /var/log/updatexlrator
bd24e1fa 168 chmod 755 /srv/web/ipfire/html/images/updbooster
268292e7 169
b4f8d26c
MT
170 chown squid:squid /var/log/squid
171 ln -sf /usr/lib/squid /usr/lib/squid/auth
268292e7
CS
172 cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac
173 chown nobody.nobody /srv/web/ipfire/html/proxy.pac
b4f8d26c 174 ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat
46c01c09 175
ab4a5a35
AF
176 #Copy stylesheets for the errorpages
177 cp -f $(DIR_SRC)/config/proxy/errorpage-ipfire.css /var/ipfire/proxy/
178 cp -f /etc/squid/errorpage.css /var/ipfire/proxy/errorpage-squid.css
179
cd1a2927
MT
180 @rm -rf $(DIR_APP)
181 @$(POSTBUILD)