]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - lfs/squid
3ede976109819caa9d673c7cdeecc3c7e39027c8
[people/teissler/ipfire-2.x.git] / lfs / squid
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007-2012 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.1.23
28
29 THISAPP = squid-$(VER)
30 DL_FILE = $(THISAPP).tar.bz2
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 = e15fdb8c615cf1f9525be0a2b75c60a7
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 xjf $(DIR_DL)/$(DL_FILE)
73
74 cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls \
75 --datadir=/usr/lib/squid \
76 --mandir=/usr/share/man --libexecdir=/usr/lib/squid \
77 --localstatedir=/var --sysconfdir=/etc/squid \
78 --enable-poll --enable-icmp --disable-wccp \
79 --enable-ident-lookups \
80 --enable-storeio="aufs,diskd,ufs" --enable-ssl \
81 --enable-underscores --enable-ntlm-fail-open --enable-arp-acl \
82 --enable-http-violations --enable-auth=basic,ntlm \
83 --enable-removal-policies="heap,lru" \
84 --enable-delay-pools --enable-linux-netfilter \
85 --enable-basic-auth-helpers="NCSA,SMB,MSNT,LDAP,multi-domain-NTLM,PAM,squid_radius_auth" \
86 --enable-useragent-log \
87 --enable-referer-log \
88 --enable-snmp \
89 --with-pthreads --with-dl \
90 --with-maxfd="16384" \
91 --with-filedescriptors=16384 \
92 --with-large-files \
93 --with-aio \
94 --enable-async-io=8 \
95 --enable-unlinkd \
96 --enable-ntln-fail-open \
97 --enable-ntlm-auth-helpers="smb_lm,no_check,fakeauth" \
98 --enable-internal-dns \
99 --enable-epoll \
100 --disable-kqueue \
101 --enable-select \
102 --enable-cache-digests \
103 --enable-forw-via-db \
104 --enable-htcp \
105 --enable-ipf-transparent \
106 --enable-kill-parent-hack \
107 --disable-wccpv2 \
108 --enable-icap-client \
109 --disable-esi
110
111 cd $(DIR_APP) && make $(MAKETUNING)
112 cd $(DIR_APP) && make install
113
114 rm -f /etc/squid/squid.conf
115 ln -sf /var/ipfire/proxy/squid.conf /etc/squid/squid.conf
116 rm -f /etc/squid/cachemgr.conf
117 ln -sf /var/ipfire/proxy/cachemgr.conf /etc/squid/cachemgr.conf
118 rm -f /etc/squid/errors
119 ln -sf /usr/lib/squid/errors/en /etc/squid/errors
120
121 -mkdir -p /var/log/cache /var/log/squid /var/log/updatexlrator
122 touch /var/log/squid/access.log
123 chown -R squid:squid /var/log/squid /var/log/cache /var/log/updatexlrator
124
125 cp /usr/lib/squid/cachemgr.cgi /srv/web/ipfire/cgi-bin/cachemgr.cgi
126 chown nobody.nobody /srv/web/ipfire/cgi-bin/cachemgr.cgi
127
128 cp -f $(DIR_SRC)/config/updxlrator/updxlrator /usr/sbin/updxlrator
129 cp -f $(DIR_SRC)/config/updxlrator/checkup /var/ipfire/updatexlrator/bin/checkup
130 cp -f $(DIR_SRC)/config/updxlrator/download /var/ipfire/updatexlrator/bin/download
131 cp -f $(DIR_SRC)/config/updxlrator/convert /var/ipfire/updatexlrator/bin/convert
132 cp -f $(DIR_SRC)/config/updxlrator/lscache /var/ipfire/updatexlrator/bin/lscache
133 cp -f $(DIR_SRC)/config/updxlrator/checkdeaddl /var/ipfire/updatexlrator/bin/checkdeaddl
134
135 cp -f $(DIR_SRC)/config/updxlrator/updxlrator-lib.pl /var/ipfire/updatexlrator//updxlrator-lib.pl
136
137 chmod 755 /usr/sbin/updxlrator /var/ipfire/updatexlrator/bin/checkup \
138 /var/ipfire/updatexlrator/bin/download \
139 /var/ipfire/updatexlrator/bin/convert \
140 /var/ipfire/updatexlrator/bin/lscache \
141 /var/ipfire/updatexlrator/bin/checkdeaddl
142
143 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.daily
144 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.monthly
145 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.weekly
146
147 chown -R nobody:nobody /var/ipfire/updatexlrator
148 chown nobody.squid /var/updatecache
149 chown nobody.squid /var/updatecache/download
150 chown nobody.squid /var/updatecache/metadata
151 chmod 775 /var/updatecache
152 chmod 775 /var/updatecache/download
153 chmod 775 /var/updatecache/metadata
154 chmod 755 /var/log/updatexlrator
155 chmod 755 /srv/web/ipfire/html/images/updbooster
156
157 chown squid:squid /var/log/squid
158 ln -sf /usr/lib/squid /usr/lib/squid/auth
159 cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac
160 chown nobody.nobody /srv/web/ipfire/html/proxy.pac
161 ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat
162
163 #Copy stylesheets for the errorpages
164 cp -f $(DIR_SRC)/config/proxy/errorpage-ipfire.css /var/ipfire/proxy/
165 cp -f /etc/squid/errorpage.css /var/ipfire/proxy/errorpage-squid.css
166
167 @rm -rf $(DIR_APP)
168 @$(POSTBUILD)