]>
Commit | Line | Data |
---|---|---|
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.3.11 | |
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 | ############################################################################### | |
36 | # Top-level Rules | |
37 | ############################################################################### | |
38 | ||
39 | objects = $(DL_FILE) | |
40 | ||
41 | $(DL_FILE) = $(DL_FROM)/$(DL_FILE) | |
42 | ||
43 | $(DL_FILE)_MD5 = dd016ff5f14b2548083b3882207914f6 | |
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 | $(patsubst %,$(DIR_CHK)/%,$(objects)) : | |
57 | @$(CHECK) | |
58 | ||
59 | $(patsubst %,$(DIR_DL)/%,$(objects)) : | |
60 | @$(LOAD) | |
61 | ||
62 | $(subst %,%_MD5,$(objects)) : | |
63 | @$(MD5) | |
64 | ||
65 | ############################################################################### | |
66 | # Installation Details | |
67 | ############################################################################### | |
68 | ||
69 | $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) | |
70 | @$(PREBUILD) | |
71 | @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xaf $(DIR_DL)/$(DL_FILE) | |
72 | cd $(DIR_APP) && ./configure \ | |
73 | --prefix=/usr \ | |
74 | --sysconfdir=/etc/squid \ | |
75 | --datadir=/usr/lib/squid \ | |
76 | --mandir=/usr/share/man \ | |
77 | --libexecdir=/usr/lib/squid \ | |
78 | --localstatedir=/var \ | |
79 | --disable-ipv6 \ | |
80 | --enable-poll \ | |
81 | --disable-icmp \ | |
82 | --disable-wccp \ | |
83 | --enable-ident-lookups \ | |
84 | --enable-storeio="aufs,diskd,ufs" \ | |
85 | --enable-ssl \ | |
86 | --enable-underscores \ | |
87 | --enable-http-violations \ | |
88 | --enable-removal-policies="heap,lru" \ | |
89 | --enable-delay-pools \ | |
90 | --enable-linux-netfilter \ | |
91 | --enable-snmp \ | |
92 | --enable-auth \ | |
93 | --enable-auth-basic \ | |
94 | --enable-auth-digest \ | |
95 | --enable-auth-negotiate \ | |
96 | --enable-auth-ntlm \ | |
97 | --enable-log-daemon-helpers \ | |
98 | --enable-url-rewrite-helpers \ | |
99 | --enable-build-info \ | |
100 | --enable-eui \ | |
101 | --with-pthreads \ | |
102 | --with-dl \ | |
103 | --with-filedescriptors=$$(( 16384 * 64 )) \ | |
104 | --with-large-files \ | |
105 | --with-aio \ | |
106 | --enable-async-io=8 \ | |
107 | --enable-unlinkd \ | |
108 | --enable-internal-dns \ | |
109 | --enable-epoll \ | |
110 | --disable-kqueue \ | |
111 | --enable-select \ | |
112 | --enable-cache-digests \ | |
113 | --enable-forw-via-db \ | |
114 | --enable-htcp \ | |
115 | --enable-linux-netfilter \ | |
116 | --enable-kill-parent-hack \ | |
117 | --disable-wccpv2 \ | |
118 | --enable-icap-client \ | |
119 | --disable-esi | |
120 | ||
121 | cd $(DIR_APP) && make $(MAKETUNING) | |
122 | cd $(DIR_APP) && make install | |
123 | ||
124 | rm -f /etc/squid/squid.conf | |
125 | ln -sf /var/ipfire/proxy/squid.conf /etc/squid/squid.conf | |
126 | rm -f /etc/squid/cachemgr.conf | |
127 | ln -sf /var/ipfire/proxy/cachemgr.conf /etc/squid/cachemgr.conf | |
128 | rm -f /etc/squid/errors | |
129 | ln -sf /usr/lib/squid/errors/en /etc/squid/errors | |
130 | ||
131 | -mkdir -p /var/log/cache /var/log/squid /var/log/updatexlrator | |
132 | touch /var/log/squid/access.log | |
133 | chown -R squid:squid /var/log/squid /var/log/cache /var/log/updatexlrator | |
134 | ||
135 | cp /usr/lib/squid/cachemgr.cgi /srv/web/ipfire/cgi-bin/cachemgr.cgi | |
136 | chown nobody.nobody /srv/web/ipfire/cgi-bin/cachemgr.cgi | |
137 | ||
138 | cp -f $(DIR_SRC)/config/updxlrator/updxlrator /usr/sbin/updxlrator | |
139 | cp -f $(DIR_SRC)/config/updxlrator/checkup /var/ipfire/updatexlrator/bin/checkup | |
140 | cp -f $(DIR_SRC)/config/updxlrator/download /var/ipfire/updatexlrator/bin/download | |
141 | cp -f $(DIR_SRC)/config/updxlrator/convert /var/ipfire/updatexlrator/bin/convert | |
142 | cp -f $(DIR_SRC)/config/updxlrator/lscache /var/ipfire/updatexlrator/bin/lscache | |
143 | cp -f $(DIR_SRC)/config/updxlrator/checkdeaddl /var/ipfire/updatexlrator/bin/checkdeaddl | |
144 | ||
145 | cp -f $(DIR_SRC)/config/updxlrator/updxlrator-lib.pl /var/ipfire/updatexlrator//updxlrator-lib.pl | |
146 | ||
147 | chmod 755 /usr/sbin/updxlrator /var/ipfire/updatexlrator/bin/checkup \ | |
148 | /var/ipfire/updatexlrator/bin/download \ | |
149 | /var/ipfire/updatexlrator/bin/convert \ | |
150 | /var/ipfire/updatexlrator/bin/lscache \ | |
151 | /var/ipfire/updatexlrator/bin/checkdeaddl | |
152 | ||
153 | ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.daily | |
154 | ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.monthly | |
155 | ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.weekly | |
156 | ||
157 | chown -R nobody:nobody /var/ipfire/updatexlrator | |
158 | chown nobody.squid /var/updatecache | |
159 | chown nobody.squid /var/updatecache/download | |
160 | chown nobody.squid /var/updatecache/metadata | |
161 | chmod 775 /var/updatecache | |
162 | chmod 775 /var/updatecache/download | |
163 | chmod 775 /var/updatecache/metadata | |
164 | chmod 755 /var/log/updatexlrator | |
165 | chmod 755 /srv/web/ipfire/html/images/updbooster | |
166 | ||
167 | chown squid:squid /var/log/squid | |
168 | ln -sf /usr/lib/squid /usr/lib/squid/auth | |
169 | cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac | |
170 | chown nobody.nobody /srv/web/ipfire/html/proxy.pac | |
171 | ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat | |
172 | ||
173 | #Copy stylesheets for the errorpages | |
174 | cp -f $(DIR_SRC)/config/proxy/errorpage-ipfire.css /var/ipfire/proxy/ | |
175 | cp -f /etc/squid/errorpage.css /var/ipfire/proxy/errorpage-squid.css | |
176 | ||
177 | @rm -rf $(DIR_APP) | |
178 | @$(POSTBUILD) |