]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/squid
005c2bc5a49907bd553b9707741f1276e5812cd2
[ipfire-2.x.git] / lfs / squid
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 # #
21 ###############################################################################
22
23 ###############################################################################
24 # Definitions
25 ###############################################################################
26
27 include Config
28
29 VER = 2.5.STABLE14
30
31 THISAPP = squid-$(VER)
32 DL_FILE = $(THISAPP).tar.bz2
33 DL_FROM = $(URL_IPFIRE)
34 DIR_APP = $(DIR_SRC)/$(THISAPP)
35 TARGET = $(DIR_INFO)/$(THISAPP)
36
37 ###############################################################################
38 # Top-level Rules
39 ###############################################################################
40
41 objects = $(DL_FILE) \
42 $(THISAPP)-httpReplyDestroy.patch \
43 $(THISAPP)-hierarchy_tag.patch
44
45 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
46 $(THISAPP)-httpReplyDestroy.patch = $(URL_IPFIRE)/$(THISAPP)-httpReplyDestroy.patch
47 $(THISAPP)-hierarchy_tag.patch = $(URL_IPFIRE)/$(THISAPP)-hierarchy_tag.patch
48
49 $(DL_FILE)_MD5 = f413e0b887a5f9b2a75350243ed5564c
50 $(THISAPP)-httpReplyDestroy.patch_MD5 = 1529f8b0170e24b26353578778435bd4
51 $(THISAPP)-hierarchy_tag.patch_MD5 = 9abe563ca3d01dc58502737edc6f3c60
52
53 install : $(TARGET)
54
55 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57 download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
59 md5 : $(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
82 cd $(DIR_APP) && patch -Np1 < $(DIR_DL)/$(THISAPP)-httpReplyDestroy.patch
83 cd $(DIR_APP) && patch -Np1 < $(DIR_DL)/$(THISAPP)-hierarchy_tag.patch
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 \
88 --disable-poll --disable-snmp --disable-icmp --disable-wccp \
89 --disable-http-violations --disable-ident-lookups \
90 --enable-storeio="aufs,coss,diskd,ufs" --enable-ssl \
91 --enable-underscores --enable-ntlm-fail-open --enable-arp-acl \
92 --enable-http-violations --enable-auth=basic,ntlm \
93 --enable-removal-policies="heap,lru" \
94 --enable-delay-pools --enable-linux-netfilter \
95 --enable-basic-auth-helpers="NCSA,SMB,MSNT,LDAP,multi-domain-NTLM" \
96 --enable-ntlm-auth-helpers="SMB" \
97 --enable-useragent-log \
98 --enable-referer-log \
99 --with-pthreads --with-dl
100
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)