# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntop/ntop-5.0.1-r1.ebuild,v 1.5 2015/04/08 18:01:21 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) RPMREL="2.3.1" inherit autotools eutils user python-single-r1 rpm DESCRIPTION="Network traffic analyzer with web interface" HOMEPAGE="http://www.ntop.org/products/ntop/" SRC_URI="http://download.opensuse.org/update/13.2/src/${P}-${RPMREL}.src.rpm" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" IUSE="snmp ssl" COMMON_DEPEND=" virtual/awk dev-lang/perl sys-libs/gdbm dev-libs/libevent net-libs/libpcap media-libs/gd media-libs/libpng net-analyzer/rrdtool[graph] 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 ${PYTHON_DEPS}" RDEPEND="${COMMON_DEPEND} media-fonts/corefonts media-gfx/graphviz net-misc/wget app-arch/gzip dev-libs/glib:2 dev-python/mako" REQUIRED_USE="${PYTHON_REQUIRED_USE}" pkg_setup() { enewgroup ntop enewuser ntop -1 -1 /var/lib/ntop ntop python-single-r1_pkg_setup } src_prepare() { ln -s ../nDPI nDPI epatch ${WORKDIR}/ntop-disable_ethernet_fingerprint_database_download.patch epatch ${WORKDIR}/ntop-disable_darwin.patch epatch ${WORKDIR}/ntop-fix-manpage-errors.patch epatch ${WORKDIR}/ntop-dot-path.patch epatch ${WORKDIR}/ntop-fix-netflow-plugin-links.patch epatch ${WORKDIR}/ntop-default_user.patch epatch ${WORKDIR}/ntop-fix-timestamp.patch epatch ${WORKDIR}/ntop-disable_svn_check.patch epatch ${WORKDIR}/ntop-no-return-in-nonvoid-function.patch epatch ${WORKDIR}/POS36-C.patch epatch ${WORKDIR}/CVE-2014-4165.patch epatch ${FILESDIR}/load_protos_file.patch epatch ${FILESDIR}/fix-doubleValuesInTrafficData-report.patch sed -i "s| ||g" python/templates/rrdAlarmStart.tmpl chmod -x python/templates/rrdAlarmStart.tmpl docs/ntop-autotools.vsd # Remove build time references so build-compare can do its work modified="$(sed -n '/^----/n;s/ - .*$//;p;q' "${FILESDIR}/${PN}.changes")" DATE="\"$(date -d "${modified}" "+%b %e %Y")\"" TIME="\"$(date -d "${modified}" "+%H:%M:%S")\"" sed -i "s/__DATE__/${DATE}/g;s/__TIME__/${TIME}/g" configure.in cp /usr/share/aclocal/libtool.m4 libtool.m4.in cat acinclude.m4.in libtool.m4.in acinclude.m4.ntop > acinclude.m4 eautoreconf # Stop make from doing autotools stuff sed -i -e '/missing --run echo/s|=.*|= true|g' Makefile.in || die } 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 pushd nDPI >/dev/null || die econf popd &>/dev/null || die econf \ $(use_enable snmp) \ $(use_with ssl) } src_compile() { pushd nDPI >/dev/null || die emake popd &>/dev/null || die emake } src_install() { LC_ALL=C # apparently doesn't work with some locales (#191576 and #205382) emake DESTDIR="${D}" install keepdir /var/lib/ntop && fowners ntop:ntop /var/lib/ntop && fperms 750 /var/lib/ntop 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}" done dodoc AUTHORS CONTENTS ChangeLog MANIFESTO NEWS dodoc PORTING README SUPPORT_NTOP.txt THANKS $(find docs -type f) newinitd "${FILESDIR}"/ntop-initd-r1 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" }