blob: 27801c0fddf69cc370afc305bafd7a3ee69ce7ce (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/vnstat/vnstat-1.4-r2.ebuild,v 1.3 2006/11/30 13:07:44 gustavoz Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Console-based network traffic monitor that keeps statistics of network usage"
HOMEPAGE="http://humdi.net/vnstat/"
SRC_URI="http://humdi.net/vnstat/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
RDEPEND="virtual/cron"
src_unpack() {
unpack ${A}
cd "${S}"
epatch \
"${FILESDIR}/${P}-long_iface_name.patch" \
"${FILESDIR}/${P}-dbdir.patch"
sed -i \
-e "s:^\(CFLAGS = \).*$:\1${CFLAGS}:" \
-e "s:^\(CC = \).*$:\1$(tc-getCC):" \
src/Makefile || die "sed failed"
}
src_compile() {
emake || die
}
src_install() {
keepdir /var/lib/vnstat
dobin src/vnstat || die
exeinto /etc/cron.hourly
newexe ${FILESDIR}/vnstat.cron vnstat
doman man/vnstat.1
newdoc pppd/vnstat_ip-down ip-down.example
newdoc pppd/vnstat_ip-up ip-up.example
dodoc CHANGES README UPGRADE FAQ
newdoc INSTALL README.setup
}
pkg_postinst() {
# compatibility for 1.1 ebuild
if [[ -d ${ROOT}/var/spool/vnstat ]] ; then
mv -f "${ROOT}"/var/spool/vnstat/* "${ROOT}"/var/lib/vnstat/ \
&& rmdir "${ROOT}"/var/spool/vnstat
einfo "vnStat db files moved from /var/spool/vnstat to /var/lib/vnstat"
fi
einfo "Repeat the following command for every interface you"
einfo "wish to monitor (replace eth0):"
einfo " vnstat -u -i eth0"
einfo
einfo "Note: if an interface transfers more than ~4GB in"
einfo "the time between cron runs, you may miss traffic"
einfo
if [[ -e ${ROOT}/etc/cron.d/vnstat ]] ; then
einfo "vnstat\'s cron script is now installed as /etc/cron.hourly/vnstat."
einfo "Please remove /etc/cron.d/vnstat."
else
einfo "A cron script has been installed to /etc/cron.hourly/vnstat."
fi
einfo "To update your interface database automatically with"
einfo "cron, uncomment the lines in /etc/cron.hourly/vnstat."
}
|