]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/squid
Quellenupdate:
[ipfire-2.x.git] / lfs / squid
CommitLineData
cd1a2927
MT
1###############################################################################
2# This file is part of the IPCop Firewall. #
3# #
4# IPCop is free software; you can redistribute it and/or modify #
5# it under the terms of the GNU General Public License as published by #
6# the Free Software Foundation; either version 2 of the License, or #
7# (at your option) any later version. #
8# #
9# IPCop is distributed in the hope that it will be useful, #
10# but WITHOUT ANY WARRANTY; without even the implied warranty of #
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
12# GNU General Public License for more details. #
13# #
14# You should have received a copy of the GNU General Public License #
15# along with IPCop; if not, write to the Free Software #
16# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
17# #
18# Makefiles are based on LFSMake, which is #
19# Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
20# #
cd1a2927
MT
21###############################################################################
22
23###############################################################################
24# Definitions
25###############################################################################
26
27include Config
28
e383179b 29VER = 2.5.STABLE14
cd1a2927
MT
30
31THISAPP = squid-$(VER)
32DL_FILE = $(THISAPP).tar.bz2
e383179b 33DL_FROM = $(URL_IPFIRE)
cd1a2927
MT
34DIR_APP = $(DIR_SRC)/$(THISAPP)
35TARGET = $(DIR_INFO)/$(THISAPP)
36
37###############################################################################
38# Top-level Rules
39###############################################################################
40
7a98bae5
MT
41objects = $(DL_FILE) \
42 $(THISAPP)-httpReplyDestroy.patch \
43 $(THISAPP)-hierarchy_tag.patch
cd1a2927
MT
44
45$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
7a98bae5
MT
46$(THISAPP)-httpReplyDestroy.patch = $(URL_IPFIRE)/$(THISAPP)-httpReplyDestroy.patch
47$(THISAPP)-hierarchy_tag.patch = $(URL_IPFIRE)/$(THISAPP)-hierarchy_tag.patch
cd1a2927 48
e383179b 49$(DL_FILE)_MD5 = f413e0b887a5f9b2a75350243ed5564c
7a98bae5
MT
50$(THISAPP)-httpReplyDestroy.patch_MD5 = 1529f8b0170e24b26353578778435bd4
51$(THISAPP)-hierarchy_tag.patch_MD5 = 9abe563ca3d01dc58502737edc6f3c60
cd1a2927
MT
52
53install : $(TARGET)
54
55check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
59md5 : $(subst %,%_MD5,$(objects))
60
61###############################################################################
62# Downloading, checking, md5sum
63###############################################################################
64
65$(patsubst %,$(DIR_CHK)/%,$(objects)) :
66 @$(CHECK)
67
68$(patsubst %,$(DIR_DL)/%,$(objects)) :
69 @$(LOAD)
70
71$(subst %,%_MD5,$(objects)) :
72 @$(MD5)
73
74###############################################################################
75# Installation Details
76###############################################################################
77
78$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
79 @$(PREBUILD)
80 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
81
7a98bae5
MT
82 cd $(DIR_APP) && patch -Np1 < $(DIR_DL)/$(THISAPP)-httpReplyDestroy.patch
83 cd $(DIR_APP) && patch -Np1 < $(DIR_DL)/$(THISAPP)-hierarchy_tag.patch
cd1a2927
MT
84 cd $(DIR_APP) && ./configure --prefix=/usr --disable-nls \
85 --datadir=/usr/lib/squid \
86 --mandir=/usr/share/man --libexecdir=/usr/lib/squid \
87 --localstatedir=/var --sysconfdir=/etc/squid \
ed38f89d 88 --disable-poll --disable-snmp --disable-icmp --disable-wccp \
cd1a2927
MT
89 --disable-http-violations --disable-ident-lookups \
90 --enable-storeio="aufs,coss,diskd,ufs" --enable-ssl \
ed38f89d
MT
91 --enable-underscores --enable-ntlm-fail-open --enable-arp-acl \
92 --enable-http-violations --enable-auth=basic,ntlm \
cd1a2927
MT
93 --enable-removal-policies="heap,lru" \
94 --enable-delay-pools --enable-linux-netfilter \
ed38f89d
MT
95 --enable-basic-auth-helpers="NCSA,SMB,MSNT,LDAP,multi-domain-NTLM" \
96 --enable-ntlm-auth-helpers="SMB" \
cd1a2927
MT
97 --enable-useragent-log \
98 --enable-referer-log \
ed38f89d
MT
99 --with-pthreads --with-dl
100
cd1a2927
MT
101 cd $(DIR_APP) && make -j 3
102 cd $(DIR_APP) && make install
103
104 rm -f /etc/squid/squid.conf
105 ln -sf $(CONFIG_ROOT)/proxy/squid.conf /etc/squid/squid.conf
106 rm -f /etc/squid/errors
107 ln -sf /usr/lib/squid/errors/English /etc/squid/errors
108
109 -mkdir -p /var/log/cache
110 -mkdir -p /var/log/squid
111 touch /var/log/squid/access.log
112 chown -R squid:squid /var/log/squid /var/log/cache
113
114 @rm -rf $(DIR_APP)
115 @$(POSTBUILD)