blob: dd9e151d93b9e6177624619a1a4688081491a5ca (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rtg/rtg-0.7.4-r2.ebuild,v 1.4 2007/05/01 22:25:29 genone Exp $
inherit eutils
DESCRIPTION="RTG: Real Traffic Grabber"
HOMEPAGE="http://rtg.sourceforge.net/"
SRC_URI="mirror://sourceforge/rtg/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE=""
DEPEND="virtual/mysql
>=net-analyzer/net-snmp-5.0.9-r1"
src_compile() {
epatch ${FILESDIR}/${P}-pathfix.patch
./configure \
--host=${CHOST} \
--prefix=/usr \
--sysconfdir=/etc/rtg \
--datadir=/usr/share/rtg \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
emake || die
}
src_install() {
einstall || die
dodoc FAQ README
newconfd "${FILESDIR}"/rtgpoll.confd rtgpoll
newinitd "${FILESDIR}"/rtgpoll.initd rtgpoll
}
pkg_postinst() {
elog "RTG has been installed."
elog
elog "The default configuration file location is now /etc/rtg"
elog
elog "Sample reports have been installed into /usr/share/rtg"
elog
}
|