]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/squidguard
HinzugefĆ¼gt:
[ipfire-2.x.git] / lfs / squidguard
CommitLineData
60cbd6e7
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# #
21###############################################################################
22
23###############################################################################
24# Definitions
25###############################################################################
26
27include Config
28
29VER = 1.2.0
30
31THISAPP = squidGuard-$(VER)
32DL_FILE = $(THISAPP).tar.gz
33DL_FROM = $(URL_IPFIRE)
34DIR_APP = $(DIR_SRC)/$(THISAPP)
35TARGET = $(DIR_INFO)/$(THISAPP)
36
37###############################################################################
38# Top-level Rules
39###############################################################################
40
41objects = $(DL_FILE)
42
43$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
44
45$(DL_FILE)_MD5 = c6e2e9112fdbda0602656f94c1ce31fd
46
47install : $(TARGET)
48
49check : $(patsubst %,$(DIR_CHK)/%,$(objects))
50
51download :$(patsubst %,$(DIR_DL)/%,$(objects))
52
53md5 : $(subst %,%_MD5,$(objects))
54
55###############################################################################
56# Downloading, checking, md5sum
57###############################################################################
58
59$(patsubst %,$(DIR_CHK)/%,$(objects)) :
60 @$(CHECK)
61
62$(patsubst %,$(DIR_DL)/%,$(objects)) :
63 @$(LOAD)
64
65$(subst %,%_MD5,$(objects)) :
66 @$(MD5)
67
68###############################################################################
69# Installation Details
70###############################################################################
71
72$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
73 @$(PREBUILD)
74 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
75 cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/squidGuard-$(VER)-ipfire.patch
76 cd $(DIR_APP) && ./configure --prefix=/usr --datadir=/usr/share \
77 --sysconfdir=/etc --localstatedir=/var --infodir=/usr/info --mandir=/usr/man \
10e4f239 78 --with-sg-config=/var/ipfire/urlfilter/squidGuard.conf \
bd365f3a 79 --with-sg-logdir=/var/log/squidGuard --with-sg-dbhome=/var/lib/squidguard \
60cbd6e7
MT
80 --with-db=/usr --with-db-inc=/usr/include --with-db-lib=/usr/lib
81 cd $(DIR_APP) && make
82 cd $(DIR_APP) && make install
bd365f3a
MT
83
84 # URL-Filter
85 -mkdir /etc/squidGuard /home/httpd/html/repository
86 cp -f $(DIR_CONF)/urlfilter/autoupdate.urls /var/ipfire/urlfilter/autoupdate/autoupdate.urls
87 ln -fs /bin/false /var/ipfire/urlfilter/autoupdate/cron.daily
88 ln -fs /bin/false /var/ipfire/urlfilter/autoupdate/cron.weekly
89 ln -fs /bin/false /var/ipfire/urlfilter/autoupdate/cron.monthly
90 cp -f $(DIR_CONF)/urlfilter/squidGuard.conf /var/ipfire/urlfilter/squidGuard.conf
91 ln -fs /var/ipfire/urlfilter/squidGuard.conf /etc/squidGuard/squidGuard.conf
92 cp -f $(DIR_CONF)/urlfilter/prebuild.pl /var/ipfire/urlfilter/bin/prebuild.pl
93 chmod 755 /var/ipfire/urlfilter/bin/prebuild.pl
94 cp -f $(DIR_CONF)/urlfilter/autoupdate.pl /var/ipfire/urlfilter/bin/autoupdate.pl
95 chmod 755 /var/ipfire/urlfilter/bin/autoupdate.pl
96 echo "1.7.1" > /var/ipfire/urlfilter/version
97
98 /bin/tar --no-same-owner -xzf $(DIR_CONF)/urlfilter/blacklists.tar.gz -C /var/ipfire/urlfilter
99 /usr/bin/perl $(DIR_CONF)/urlfilter/makeconf.pl
100 chown -R nobody:nobody /var/ipfire/urlfilter
5433e2c9
MT
101 chmod 755 /home/httpd/html/images/urlfilter
102 chmod 644 /home/httpd/html/images/urlfilter/*
bd365f3a
MT
103 chown -R nobody:nobody /home/httpd/html/repository
104 chown -R squid:squid /var/log/squidGuard
105
60cbd6e7
MT
106 @rm -rf $(DIR_APP)
107 @$(POSTBUILD)