From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A34D11395E4 for ; Mon, 21 Nov 2016 19:49:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75B82E0B27; Mon, 21 Nov 2016 19:48:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5C6E9E0B27 for ; Mon, 21 Nov 2016 19:48:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0749F340F98 for ; Mon, 21 Nov 2016 19:48:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C7824A5 for ; Mon, 21 Nov 2016 19:48:56 +0000 (UTC) From: "Slawek Lis" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Slawek Lis" Message-ID: <1479757696.0662802372a980e6e5863f230ab6d976745d2723.slis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ntopng/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ntopng/metadata.xml net-analyzer/ntopng/ntopng-2.4.ebuild X-VCS-Directories: net-analyzer/ntopng/ X-VCS-Committer: slis X-VCS-Committer-Name: Slawek Lis X-VCS-Revision: 0662802372a980e6e5863f230ab6d976745d2723 X-VCS-Branch: master Date: Mon, 21 Nov 2016 19:48:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: cdd21954-4e1e-4c4f-89e7-6eaa8edad43a X-Archives-Hash: 2b97a8c7b86f1350dfa566a25f258cef commit: 0662802372a980e6e5863f230ab6d976745d2723 Author: Slawomir Lis gentoo org> AuthorDate: Mon Nov 21 19:46:22 2016 +0000 Commit: Slawek Lis gentoo org> CommitDate: Mon Nov 21 19:48:16 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06628023 net-analyzer/ntopng: fixes problems with hardcoded g++ calls Thanks to Thomas Deutschmann this should finally fixes problems with 600246. Package-Manager: portage-2.3.2 net-analyzer/ntopng/metadata.xml | 3 --- net-analyzer/ntopng/ntopng-2.4.ebuild | 9 +++++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/net-analyzer/ntopng/metadata.xml b/net-analyzer/ntopng/metadata.xml index 9b7a6e8..cab61f7 100644 --- a/net-analyzer/ntopng/metadata.xml +++ b/net-analyzer/ntopng/metadata.xml @@ -7,7 +7,4 @@ ntop - - Enable REDIS support - diff --git a/net-analyzer/ntopng/ntopng-2.4.ebuild b/net-analyzer/ntopng/ntopng-2.4.ebuild index 6f8199c..75e58cc 100644 --- a/net-analyzer/ntopng/ntopng-2.4.ebuild +++ b/net-analyzer/ntopng/ntopng-2.4.ebuild @@ -3,7 +3,7 @@ # $Id$ EAPI=5 -inherit autotools eutils user +inherit autotools eutils user toolchain-funcs DESCRIPTION="Network traffic analyzer with web interface" HOMEPAGE="http://www.ntop.org/" @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/ntop/${PN}/${P}-stable.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="redis" +IUSE="" DEPEND="dev-db/sqlite:3 dev-python/pyzmq @@ -20,14 +20,14 @@ DEPEND="dev-db/sqlite:3 dev-libs/json-c dev-libs/geoip dev-libs/glib:2 - redis? ( dev-libs/hiredis ) + dev-libs/hiredis dev-libs/libxml2 net-analyzer/rrdtool net-libs/libpcap net-misc/curl virtual/libmysqlclient" RDEPEND="${DEPEND} - redis? ( dev-db/redis )" + dev-db/redis" S="${WORKDIR}/${P}-stable" @@ -44,6 +44,7 @@ src_prepare() { } src_configure() { + tc-export CC CXX LD NM OBJDUMP PKG_CONFIG cd "${S}/nDPI" econf cd "${S}"