blob: 98815a07621b69ab74288dae070a9bbf37443a45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ipac-ng/ipac-ng-1.31.ebuild,v 1.2 2005/02/25 13:10:35 ka0ttic Exp $
inherit eutils
DESCRIPTION="ip accounting suite for 2.4 and 2.6 series kernels with text and PNG image output like mrtg"
HOMEPAGE="http://sourceforge.net/projects/ipac-ng/"
SRC_URI="mirror://sourceforge/ipac-ng/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="gd sqlite"
DEPEND="sys-devel/bison
sys-devel/flex
dev-lang/perl
gd? ( dev-perl/GD )
sqlite? ( =dev-db/sqlite-2* )
!sqlite? ( sys-libs/gdbm )
sys-devel/flex
virtual/libc"
RDEPEND="net-firewall/iptables
virtual/cron
dev-lang/perl
gd? ( dev-perl/GD )
sqlite? ( =dev-db/sqlite-2* )
!sqlite? ( sys-libs/gdbm )
virtual/libc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-iptables.patch || die "patch failed"
}
src_compile() {
local myconf
if use sqlite; then
myconf="--enable-default-storage=sqlite";
else
myconf="--enable-default-storage=gdbm";
fi
econf ${myconf} \
--enable-default-agent=iptables \
--enable-default-access=files \
--enable-classic=yes \
|| die "./configure failed"
emake -j1 || die "make failed"
}
src_test() {
einfo "self test is broken"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodir /var/lib/ipac
insinto /etc/ipac-ng
newins ${FILESDIR}/ipac.conf.1.30 ipac.conf
newins ${FILESDIR}/rules.conf.1.30 rules.conf
exeinto /etc/init.d
newexe ${FILESDIR}/ipac-ng.rc.1.30 ipac-ng
exeinto /etc/cron.hourly
newexe ${FILESDIR}/ipac-ng.cron.1.30 ipac-ng
dodoc README TODO doc/* CHANGELOG
}
pkg_postinst() {
ewarn ""
ewarn " W A R N I N G !"
ewarn "do not use \"/etc/init.d/iptables save\" when ipac-ng is running!"
ewarn "this WILL save ipac rules and can cause problems!"
ewarn "ipac-ng should be started AFTER iptables and shut down BEFORE iptables"
ewarn "use /etc/init.d/iptables save only when ipac rules are removed!"
ewarn ""
einfo "the accounting database is at /var/lib/ipac"
einfo "use /usr/sbin/ipacsum to get your ip acounting data"
einfo "use /usr/sbin/fetchipac to update the accounting at any time"
einfo "fetchipac is run by cron every hour by /etc/cron.daily/ipac-ng"
einfo "after you changed rules.conf you have to run \"fetchipac -S\" or"
einfo "stop/start the service so your iptables gets updated"
einfo "if ipac is not working with the default configuration make"
einfo "rm /etc/ipac-ng/* and rm /var/lib/ipac/* and emerge again"
}
|