]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - lfs/squid
Merge remote-tracking branch 'ummeegge/useragent' into next
[people/teissler/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
940da289 27VER = 3.1.23
cd1a2927
MT
28
29THISAPP = squid-$(VER)
1432ca2e 30DL_FILE = $(THISAPP).tar.bz2
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
940da289 43$(DL_FILE)_MD5 = e15fdb8c615cf1f9525be0a2b75c60a7
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###############################################################################
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)
1432ca2e 72 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xjf $(DIR_DL)/$(DL_FILE)
cd1a2927 73
73237241
MT
74 cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/squid-3.1-10486.patch
75 cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/squid-3.1-10487.patch
76
cd1a2927
MT
77 cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls \
78 --datadir=/usr/lib/squid \
79 --mandir=/usr/share/man --libexecdir=/usr/lib/squid \
80 --localstatedir=/var --sysconfdir=/etc/squid \
1432ca2e 81 --enable-poll --enable-icmp --disable-wccp \
762b480c 82 --enable-ident-lookups \
d4c6ba21 83 --enable-storeio="aufs,diskd,ufs" --enable-ssl \
ed38f89d
MT
84 --enable-underscores --enable-ntlm-fail-open --enable-arp-acl \
85 --enable-http-violations --enable-auth=basic,ntlm \
cd1a2927
MT
86 --enable-removal-policies="heap,lru" \
87 --enable-delay-pools --enable-linux-netfilter \
1432ca2e 88 --enable-basic-auth-helpers="NCSA,SMB,MSNT,LDAP,multi-domain-NTLM,PAM,squid_radius_auth" \
cd1a2927
MT
89 --enable-useragent-log \
90 --enable-referer-log \
fe1656d2
CS
91 --enable-snmp \
92 --with-pthreads --with-dl \
8b9b6c01
MT
93 --with-maxfd="65536" \
94 --with-filedescriptors=65536 \
1432ca2e
AF
95 --with-large-files \
96 --with-aio \
800c1607 97 --enable-async-io=8 \
1432ca2e
AF
98 --enable-unlinkd \
99 --enable-ntln-fail-open \
100 --enable-ntlm-auth-helpers="smb_lm,no_check,fakeauth" \
101 --enable-internal-dns \
102 --enable-epoll \
103 --disable-kqueue \
104 --enable-select \
6bea848d 105 --enable-cache-digests \
1432ca2e
AF
106 --enable-forw-via-db \
107 --enable-htcp \
108 --enable-ipf-transparent \
109 --enable-kill-parent-hack \
110 --disable-wccpv2 \
81b2c3f1 111 --enable-icap-client \
1432ca2e 112 --disable-esi
ed38f89d 113
fd3e7da0 114 cd $(DIR_APP) && make $(MAKETUNING)
cd1a2927
MT
115 cd $(DIR_APP) && make install
116
117 rm -f /etc/squid/squid.conf
46c01c09 118 ln -sf /var/ipfire/proxy/squid.conf /etc/squid/squid.conf
fe1656d2
CS
119 rm -f /etc/squid/cachemgr.conf
120 ln -sf /var/ipfire/proxy/cachemgr.conf /etc/squid/cachemgr.conf
cd1a2927 121 rm -f /etc/squid/errors
d4c6ba21 122 ln -sf /usr/lib/squid/errors/en /etc/squid/errors
cd1a2927 123
46c01c09 124 -mkdir -p /var/log/cache /var/log/squid /var/log/updatexlrator
cd1a2927 125 touch /var/log/squid/access.log
46c01c09
MT
126 chown -R squid:squid /var/log/squid /var/log/cache /var/log/updatexlrator
127
fe1656d2
CS
128 cp /usr/lib/squid/cachemgr.cgi /srv/web/ipfire/cgi-bin/cachemgr.cgi
129 chown nobody.nobody /srv/web/ipfire/cgi-bin/cachemgr.cgi
130
46c01c09
MT
131 cp -f $(DIR_SRC)/config/updxlrator/updxlrator /usr/sbin/updxlrator
132 cp -f $(DIR_SRC)/config/updxlrator/checkup /var/ipfire/updatexlrator/bin/checkup
133 cp -f $(DIR_SRC)/config/updxlrator/download /var/ipfire/updatexlrator/bin/download
e79f3ac0
AF
134 cp -f $(DIR_SRC)/config/updxlrator/convert /var/ipfire/updatexlrator/bin/convert
135 cp -f $(DIR_SRC)/config/updxlrator/lscache /var/ipfire/updatexlrator/bin/lscache
4f4092e3
CS
136 cp -f $(DIR_SRC)/config/updxlrator/checkdeaddl /var/ipfire/updatexlrator/bin/checkdeaddl
137
138 cp -f $(DIR_SRC)/config/updxlrator/updxlrator-lib.pl /var/ipfire/updatexlrator//updxlrator-lib.pl
5ae664e1 139
46c01c09 140 chmod 755 /usr/sbin/updxlrator /var/ipfire/updatexlrator/bin/checkup \
5ae664e1
AF
141 /var/ipfire/updatexlrator/bin/download \
142 /var/ipfire/updatexlrator/bin/convert \
4f4092e3
CS
143 /var/ipfire/updatexlrator/bin/lscache \
144 /var/ipfire/updatexlrator/bin/checkdeaddl
46c01c09 145
09eb4f00
MT
146 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.daily
147 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.monthly
148 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.weekly
46c01c09
MT
149
150 chown -R nobody:nobody /var/ipfire/updatexlrator
5db10f47
AF
151 chown nobody.squid /var/updatecache
152 chown nobody.squid /var/updatecache/download
153 chown nobody.squid /var/updatecache/metadata
154 chmod 775 /var/updatecache
155 chmod 775 /var/updatecache/download
156 chmod 775 /var/updatecache/metadata
46c01c09 157 chmod 755 /var/log/updatexlrator
bd24e1fa 158 chmod 755 /srv/web/ipfire/html/images/updbooster
268292e7 159
b4f8d26c
MT
160 chown squid:squid /var/log/squid
161 ln -sf /usr/lib/squid /usr/lib/squid/auth
268292e7
CS
162 cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac
163 chown nobody.nobody /srv/web/ipfire/html/proxy.pac
b4f8d26c 164 ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat
46c01c09 165
ab4a5a35
AF
166 #Copy stylesheets for the errorpages
167 cp -f $(DIR_SRC)/config/proxy/errorpage-ipfire.css /var/ipfire/proxy/
168 cp -f /etc/squid/errorpage.css /var/ipfire/proxy/errorpage-squid.css
169
cd1a2927
MT
170 @rm -rf $(DIR_APP)
171 @$(POSTBUILD)