]> git.ipfire.org Git - ipfire-2.x.git/blame - lfs/squid-accounting
collectd: Fix typo in "derive"
[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
ddfc0693 12VER = 1.0.2
db8a01e0
AM
13
14THISAPP = squid-accounting-$(VER)
15DIR_APP = $(DIR_SRC)/$(THISAPP)
16TARGET = $(DIR_INFO)/$(THISAPP)
17PROG = squid-accounting
218d2d75 18PAK_VER = 4
db8a01e0
AM
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
db8a01e0
AM
47
48#Touch Logfile
49 touch /var/log/accounting.log
50 chmod 777 /var/log/accounting.log
51#Set permissions for logo and graphs
52 chmod -R 777 /srv/web/ipfire/html/accounting
53
54
55 install -v -m 755 $(DIR_APP)/squid-accounting/accounting.cgi /srv/web/ipfire/cgi-bin/
56 install -v -m 755 $(DIR_APP)/squid-accounting/acct.pl /usr/local/bin/
f38af1a9 57 install -v -m 644 $(DIR_APP)/squid-accounting/acct-lib.pl /var/ipfire/accounting/
db8a01e0
AM
58 install -v -m 655 $(DIR_APP)/squid-accounting/acct.de.pl /var/ipfire/addon-lang/
59 install -v -m 655 $(DIR_APP)/squid-accounting/acct.en.pl /var/ipfire/addon-lang/
60 install -v -m 655 $(DIR_APP)/squid-accounting/EX-squid-accounting.menu /var/ipfire/menu.d/
61 install -v -m 755 $(DIR_APP)/squid-accounting/dbinstall.pl /var/ipfire/accounting/
62 install -v -m 644 $(DIR_APP)/squid-accounting/config/backup/includes/squid-accounting \
63 /var/ipfire/backup/addons/includes/squid-accounting
64
65#activate hourly logging of proxy logfile
66 ln -sf /usr/local/bin/acct.pl /etc/fcron.hourly/squid-accounting
67
68 chown -R nobody.nobody /var/ipfire/accounting
69 @rm -rf $(DIR_APP)
70 @$(POSTBUILD)
71