blob: 1b5ba5afd93dfd5daa9f5a0e0ea77716c1bdf12c (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/vnstat/vnstat-1.1.ebuild,v 1.4 2004/07/13 06:41:16 eldad Exp $
DESCRIPTION="network traffic monitor that keeps statistics of daily network traffic"
HOMEPAGE="http://torus.lnet.lut.fi/vnstat/"
SRC_URI="http://torus.lnet.lut.fi/vnstat/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
dodir /var/spool/vnstat
dobin src/vnstat
newdoc cron/vnstat vnstat-samplecron
dodoc CHANGES README UPGRADE
}
|