117 lines
2.8 KiB
Bash
117 lines
2.8 KiB
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="4"
|
|
|
|
PYTHON_DEPEND="2"
|
|
|
|
inherit autotools eutils user python
|
|
|
|
DESCRIPTION="Network traffic analyzer with web interface"
|
|
HOMEPAGE="http://www.ntop.org/products/ntop/"
|
|
SRC_URI="mirror://sourceforge/ntop/ntop/Stable/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
|
|
IUSE="snmp ssl"
|
|
|
|
COMMON_DEPEND="
|
|
sys-apps/gawk
|
|
dev-lang/perl
|
|
sys-libs/gdbm
|
|
dev-libs/libevent
|
|
net-libs/libpcap
|
|
media-libs/gd
|
|
media-libs/libpng
|
|
net-analyzer/rrdtool
|
|
ssl? ( dev-libs/openssl )
|
|
sys-libs/zlib
|
|
dev-libs/geoip
|
|
dev-lang/lua
|
|
snmp? ( net-analyzer/net-snmp[ipv6] )"
|
|
DEPEND="${COMMON_DEPEND}
|
|
>=sys-devel/libtool-1.5.26"
|
|
RDEPEND="${COMMON_DEPEND}
|
|
media-fonts/corefonts
|
|
media-gfx/graphviz
|
|
net-misc/wget
|
|
app-arch/gzip
|
|
!arm? ( dev-libs/gdome2 )
|
|
dev-libs/glib:2"
|
|
|
|
pkg_setup() {
|
|
python_set_active_version 2
|
|
python_pkg_setup
|
|
enewgroup ntop
|
|
enewuser ntop -1 -1 /var/lib/ntop ntop
|
|
}
|
|
|
|
src_prepare() {
|
|
python_convert_shebangs -q -r 2 "${S}"
|
|
epatch "${FILESDIR}"/${P}-gentoo.patch
|
|
#Waiting for the fix, see https://www.ntop.org/bugzilla3/show_bug.cgi?id=273
|
|
# epatch "${FILESDIR}"/${P}-system-ndpi.patch
|
|
# rm -r ./nDPI
|
|
cp /usr/share/aclocal/libtool.m4 libtool.m4.in
|
|
cat acinclude.m4.in libtool.m4.in acinclude.m4.ntop > acinclude.m4
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
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
|
|
|
|
cd ./nDPI
|
|
econf
|
|
emake
|
|
cd ..
|
|
|
|
econf \
|
|
$(use_enable snmp) \
|
|
$(use_with ssl) \
|
|
--with-rrd-home=/usr/lib \
|
|
|| die "configure problem"
|
|
}
|
|
|
|
src_install() {
|
|
LC_ALL=C # apparently doesn't work with some locales (#191576 and #205382)
|
|
emake DESTDIR="${D}" install || die "install problem"
|
|
|
|
keepdir /var/lib/ntop &&
|
|
fowners ntop:ntop /var/lib/ntop &&
|
|
fperms 750 /var/lib/ntop ||
|
|
die "failed to prepare /var/lib/ntop dir"
|
|
insinto /var/lib/ntop
|
|
gunzip 3rd_party/GeoIPASNum.dat.gz
|
|
gunzip 3rd_party/GeoLiteCity.dat.gz
|
|
local f
|
|
for f in GeoIPASNum.dat GeoLiteCity.dat; do
|
|
# Don't install included GeoIP files if newer versions are available
|
|
[ -f "${ROOT}/var/lib/ntop/${f}" ] ||
|
|
doins "3rd_party/${f}" ||
|
|
die "failed to install ${f}"
|
|
done
|
|
|
|
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
|
|
|
|
exeinto /etc/cron.monthly
|
|
doexe "${FILESDIR}"/ntop-update-geoip-db
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "If this is the first time you install ntop, you need to run"
|
|
elog "following command before starting ntop service:"
|
|
elog " ntop --set-admin-password"
|
|
}
|