]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/squid
Ein Paar Dateien fuer die GPLv3 angepasst.
[people/pmueller/ipfire-2.x.git] / lfs / squid
CommitLineData
cd1a2927 1###############################################################################
cd1a2927 2# #
70df8302
MT
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
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
3fa3a0f9 27VER = 2.6.STABLE14
cd1a2927
MT
28
29THISAPP = squid-$(VER)
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
3fa3a0f9 43$(DL_FILE)_MD5 = eadb138d48320df8b99349121159c6bf
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)
72 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(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 \
ed38f89d 78 --disable-poll --disable-snmp --disable-icmp --disable-wccp \
cd1a2927
MT
79 --disable-http-violations --disable-ident-lookups \
80 --enable-storeio="aufs,coss,diskd,ufs" --enable-ssl \
ed38f89d
MT
81 --enable-underscores --enable-ntlm-fail-open --enable-arp-acl \
82 --enable-http-violations --enable-auth=basic,ntlm \
cd1a2927
MT
83 --enable-removal-policies="heap,lru" \
84 --enable-delay-pools --enable-linux-netfilter \
ed38f89d
MT
85 --enable-basic-auth-helpers="NCSA,SMB,MSNT,LDAP,multi-domain-NTLM" \
86 --enable-ntlm-auth-helpers="SMB" \
cd1a2927
MT
87 --enable-useragent-log \
88 --enable-referer-log \
ed38f89d
MT
89 --with-pthreads --with-dl
90
fd3e7da0 91 cd $(DIR_APP) && make $(MAKETUNING)
cd1a2927
MT
92 cd $(DIR_APP) && make install
93
94 rm -f /etc/squid/squid.conf
46c01c09 95 ln -sf /var/ipfire/proxy/squid.conf /etc/squid/squid.conf
cd1a2927
MT
96 rm -f /etc/squid/errors
97 ln -sf /usr/lib/squid/errors/English /etc/squid/errors
98
46c01c09 99 -mkdir -p /var/log/cache /var/log/squid /var/log/updatexlrator
cd1a2927 100 touch /var/log/squid/access.log
46c01c09
MT
101 chown -R squid:squid /var/log/squid /var/log/cache /var/log/updatexlrator
102
103 cp -f $(DIR_SRC)/config/updxlrator/updxlrator /usr/sbin/updxlrator
104 cp -f $(DIR_SRC)/config/updxlrator/checkup /var/ipfire/updatexlrator/bin/checkup
105 cp -f $(DIR_SRC)/config/updxlrator/download /var/ipfire/updatexlrator/bin/download
ee78a5ef
MT
106 -mkdir -p /usr/lib/squid/errors.ipfire
107 cp -fr $(DIR_SRC)/config/proxy/errors.ipfire/* /usr/lib/squid/errors.ipfire/
341ff36c 108 -find /usr/lib/squid/errors.ipfire/ -name .svn -exec rm -rf {} \;
46c01c09
MT
109 chmod 755 /usr/sbin/updxlrator /var/ipfire/updatexlrator/bin/checkup \
110 /var/ipfire/updatexlrator/bin/download
111
09eb4f00
MT
112 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.daily
113 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.monthly
114 ln -fs /bin/false /var/ipfire/updatexlrator/autocheck/cron.weekly
46c01c09
MT
115
116 chown -R nobody:nobody /var/ipfire/updatexlrator
117 chown nobody.squid /srv/web/ipfire/html/updatecache
118 chown nobody.squid /srv/web/ipfire/html/updatecache/download
119 chown nobody.squid /srv/web/ipfire/html/updatecache/metadata
120 chmod 775 /srv/web/ipfire/html/updatecache
121 chmod 775 /srv/web/ipfire/html/updatecache/download
122 chmod 775 /srv/web/ipfire/html/updatecache/metadata
123 chmod 755 /var/log/updatexlrator
268292e7 124
b4f8d26c
MT
125 chown squid:squid /var/log/squid
126 ln -sf /usr/lib/squid /usr/lib/squid/auth
268292e7
CS
127 cp -f $(DIR_SRC)/config/proxy/proxy.pac /srv/web/ipfire/html/proxy.pac
128 chown nobody.nobody /srv/web/ipfire/html/proxy.pac
b4f8d26c 129 ln -sf /srv/web/ipfire/html/proxy.pac /srv/web/ipfire/html/wpad.dat
46c01c09 130
cd1a2927
MT
131 @rm -rf $(DIR_APP)
132 @$(POSTBUILD)