slis 15/04/16 04:57:29 Modified: ntopng-1.2.1.ebuild ChangeLog Log: Fixed dependencies (#539970) (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0x55265D89)
Revision Changes Path 1.3 net-analyzer/ntopng/ntopng-1.2.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ntopng/ntopng-1.2.1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ntopng/ntopng-1.2.1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ntopng/ntopng-1.2.1.ebuild?r1=1.2&r2=1.3 Index: ntopng-1.2.1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/ntopng/ntopng-1.2.1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ntopng-1.2.1.ebuild 21 Mar 2015 18:56:02 -0000 1.2 +++ ntopng-1.2.1.ebuild 16 Apr 2015 04:57:29 -0000 1.3 @@ -1,9 +1,8 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntopng/ntopng-1.2.1.ebuild,v 1.2 2015/03/21 18:56:02 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntopng/ntopng-1.2.1.ebuild,v 1.3 2015/04/16 04:57:29 slis Exp $ EAPI=5 - inherit autotools user DESCRIPTION="Network traffic analyzer with web interface" @@ -15,27 +14,26 @@ KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND=" - dev-db/sqlite:3= +DEPEND="dev-db/sqlite:3 dev-libs/geoip - dev-libs/glib:2=" + dev-libs/glib:2 + net-libs/libpcap" RDEPEND="${DEPEND} dev-db/redis" -pkg_setup() { - enewuser ntopng -} - src_prepare() { eautoreconf } src_install() { SHARE_NTOPNG_DIR="${EPREFIX}/usr/share/${PN}" + dodir ${SHARE_NTOPNG_DIR} insinto ${SHARE_NTOPNG_DIR} - doins -r httpdocs scripts + doins -r httpdocs + doins -r scripts - dobin ${PN} + exeinto /usr/bin + doexe ${PN} doman ${PN}.8 newinitd "${FILESDIR}/ntopng.init.d" ntopng @@ -45,6 +43,10 @@ fowners ntopng "${EPREFIX}/var/lib/ntopng" } +pkg_setup() { + enewuser ntopng +} + pkg_postinst() { elog "ntopng default creadential are user='admin' password='admin'" } 1.3 net-analyzer/ntopng/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ntopng/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ntopng/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/ntopng/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/net-analyzer/ntopng/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 21 Mar 2015 18:56:02 -0000 1.2 +++ ChangeLog 16 Apr 2015 04:57:29 -0000 1.3 @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/ntopng # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntopng/ChangeLog,v 1.2 2015/03/21 18:56:02 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ntopng/ChangeLog,v 1.3 2015/04/16 04:57:29 slis Exp $ + + 16 Apr 2015; Sławek Lis <[email protected]> ntopng-1.2.1.ebuild: + Fixed dependencies (#539970) 21 Mar 2015; Justin Lecher <[email protected]> ntopng-1.2.1.ebuild: use dobin instead of exeinto /usr/bin/ && doexe
