blob: 92a85596763e8ef89fc090cc06c40e93f681c049 (
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ntop-3.3.ebuild,v 1.4 2007/09/07 06:47:31 mr_bones_ Exp $
inherit eutils autotools
DESCRIPTION="tool that shows network usage like top"
HOMEPAGE="http://www.ntop.org/ntop.html"
SRC_URI="mirror://sourceforge/ntop/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="ipv6 nls ssl tcpd zlib"
#IUSE="ipv6 nls snmp ssl tcpd zlib"
DEPEND="sys-apps/gawk
>=sys-devel/libtool-1.4
>=sys-libs/gdbm-1.8.0
net-libs/libpcap
>=media-libs/gd-2.0.22
>=media-libs/libpng-1.2.5
net-analyzer/rrdtool
snmp? ( net-analyzer/net-snmp )
ssl? ( >=dev-libs/openssl-0.9.6 )
tcpd? ( >=sys-apps/tcp-wrappers-7.6-r4 )
zlib? ( sys-libs/zlib )"
# Needed by xmldumpPlugin - couldn't get it to work
# dev-libs/gdome2
# >=dev-libs/glib-2"
RDEPEND="${DEPEND}
media-gfx/graphviz"
pkg_setup() {
# snmp doesn't compile in this release, disabled for now
#if use snmp ; then
# ewarn "snmp plugin is under development and upstream does not recommend"
# ewarn "it for usage in production environment."
# if ! use ipv6 ; then
# echo
# eerror "snmp plugin has compilation problems without ipv6 support."
# eerror "For additional information see bug #121497."
# die "snmp without ipv6 is broken"
# else
# if ! built_with_use net-analyzer/net-snmp ipv6 ; then
# echo
# eerror "You have both ipv6 and snmp enabled."
# eerror "This require ipv6 support in net-analyzer/net-snmp."
# eerror "However, net-analyzer/net-snmp was compiled with ipv6 flag disabled."
# eerror "Please, re-emerge net-analyzer/net-snmp with USE=\"ipv6\"."
# die "net-analyzer/net-snmp was build without ipv6."
# fi
# fi
#fi
enewgroup ntop
enewuser ntop -1 -1 /var/lib/ntop ntop
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/globals-core.c.diff
epatch "${FILESDIR}"/${P}-build.patch
eautoreconf
sed -i \
-e "s@/usr/local/bin/dot@/usr/bin/dot@" report.c || die "sed failed"
}
src_compile() {
# force disable xmldumpPlugin
export \
ac_cv_header_glib_h=no \
ac_cv_header_glibconfig_h=no \
ac_cv_header_gdome_h=no \
ac_cv_lib_glib_g_date_julian=no \
ac_cv_lib_xml2_xmlCheckVersion=no \
ac_cv_lib_gdome_gdome_di_saveDocToFile=no
econf \
$(use_enable ipv6) \
$(use_enable nls i18n) \
$(use_with ssl) $(use_enable ssl sslv3) $(use_enable ssl sslwatchdog) \
$(use_with tcpd) \
$(use_with zlib) \
--with-rrd-home=/usr/lib \
--disable-snmp \
|| die "configure problem"
# $(use_enable snmp)
emake || die "compile problem"
}
src_install() {
emake DESTDIR="${D}" install || die "install problem"
keepdir /var/lib/ntop
dodoc AUTHORS CONTENTS ChangeLog MANIFESTO NEWS
dodoc PORTING README SUPPORT_NTOP.txt THANKS $(find docs -type f)
newinitd "${FILESDIR}"/ntop-initd ntop
newconfd "${FILESDIR}"/ntop-confd ntop
}
pkg_postinst() {
fowners ntop:ntop /var/lib/ntop
fperms 750 /var/lib/ntop
elog "You need to set a password first by running"
elog "ntop --set-admin-password"
}
|