]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/squid-accounting
Squid-accounting: new addon for measuring proxy traffic per user/ip
[ipfire-2.x.git] / lfs / squid-accounting
CommitLineData
db8a01e0
AM
1###############################################################################
2# IPFire.org - An Open Source Firewall Solution #
3# Copyright (C) - IPFire Development Team <info@ipfire.org> #
4###############################################################################
5
6###############################################################################
7# Definitions
8###############################################################################
9
10include Config
11
12VER = 1.0.1
13
14THISAPP = squid-accounting-$(VER)
15DIR_APP = $(DIR_SRC)/$(THISAPP)
16TARGET = $(DIR_INFO)/$(THISAPP)
17PROG = squid-accounting
18PAK_VER = 2
19
20DEPS = "perl-DBI perl-DBD-SQLite perl-File-ReadBackwards perl-PDF-API2 sendEmail"
21
22###############################################################################
23# Top-level Rules
24###############################################################################
25
26install : $(TARGET)
27
28check :
29
30download :
31
32md5 :
33
34dist:
35 @$(PAK)
36
37###############################################################################
38# Installation Details
39###############################################################################
40
41$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
42 @$(PREBUILD)
43 @rm -rf $(DIR_APP) && mkdir $(DIR_APP) && cp -R $(DIR_SRC)/src/squid-accounting/ $(DIR_APP)
44 cd $(DIR_APP)
45 mkdir -p /var/ipfire/accounting/bill
46 mkdir -p /srv/web/ipfire/html/accounting/logo
47 chmod -R 777 /srv/web/ipfire/html/accounting
48
49#Touch Logfile
50 touch /var/log/accounting.log
51 chmod 777 /var/log/accounting.log
52#Set permissions for logo and graphs
53 chmod -R 777 /srv/web/ipfire/html/accounting
54
55
56 install -v -m 755 $(DIR_APP)/squid-accounting/accounting.cgi /srv/web/ipfire/cgi-bin/
57 install -v -m 755 $(DIR_APP)/squid-accounting/acct.pl /usr/local/bin/
58 install -v -m 755 $(DIR_APP)/squid-accounting/acct-lib.pl /var/ipfire/accounting/
59 install -v -m 655 $(DIR_APP)/squid-accounting/acct.de.pl /var/ipfire/addon-lang/
60 install -v -m 655 $(DIR_APP)/squid-accounting/acct.en.pl /var/ipfire/addon-lang/
61 install -v -m 655 $(DIR_APP)/squid-accounting/EX-squid-accounting.menu /var/ipfire/menu.d/
62 install -v -m 755 $(DIR_APP)/squid-accounting/dbinstall.pl /var/ipfire/accounting/
63 install -v -m 644 $(DIR_APP)/squid-accounting/config/backup/includes/squid-accounting \
64 /var/ipfire/backup/addons/includes/squid-accounting
65
66#activate hourly logging of proxy logfile
67 ln -sf /usr/local/bin/acct.pl /etc/fcron.hourly/squid-accounting
68
69 chown -R nobody.nobody /var/ipfire/accounting
70 @rm -rf $(DIR_APP)
71 @$(POSTBUILD)
72