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 DEABF1395E2 for ; Fri, 11 Nov 2016 20:31:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40F3CE080A; Fri, 11 Nov 2016 20:31:08 +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 2A9E8E080A for ; Fri, 11 Nov 2016 20:31:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 569AE341697 for ; Fri, 11 Nov 2016 20:31:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5ED5386E for ; Fri, 11 Nov 2016 20:31:05 +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: <1478896250.dd304cf7d48da6beecc0beb5c6496bda0e177c94.slis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/ntopng/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/ntopng/ntopng-2.0.ebuild X-VCS-Directories: net-analyzer/ntopng/ X-VCS-Committer: slis X-VCS-Committer-Name: Slawek Lis X-VCS-Revision: dd304cf7d48da6beecc0beb5c6496bda0e177c94 X-VCS-Branch: master Date: Fri, 11 Nov 2016 20:31:05 +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: 96d77c03-8d17-4a73-8647-87e462273839 X-Archives-Hash: 4511f4fcf68c0daf3c92700cd55efc73 commit: dd304cf7d48da6beecc0beb5c6496bda0e177c94 Author: Slawomir Lis gentoo org> AuthorDate: Fri Nov 11 20:30:50 2016 +0000 Commit: Slawek Lis gentoo org> CommitDate: Fri Nov 11 20:30:50 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd304cf7 net-analyzer/ntopng: fixed bug with configuration Fixed a bug (#599528) caused when building without libpcap. Configuration script does not return an error code, so configure phase was completed succesfully. Reported-By: Toralf Förster gmx.de> Package-Manager: portage-2.3.2 net-analyzer/ntopng/ntopng-2.0.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/net-analyzer/ntopng/ntopng-2.0.ebuild b/net-analyzer/ntopng/ntopng-2.0.ebuild index 1f16266..eca802c 100644 --- a/net-analyzer/ntopng/ntopng-2.0.ebuild +++ b/net-analyzer/ntopng/ntopng-2.0.ebuild @@ -28,6 +28,7 @@ RDEPEND="${DEPEND} src_prepare() { cat "${S}/configure.seed" | sed "s/@VERSION@/${PV}/g" | sed "s/@SHORT_VERSION@/${PV}/g" > "${S}/configure.ac" epatch "${FILESDIR}/${P}-dont-build-ndpi.patch" + sed -i 's/exit$/exit 1/g' "${S}/configure.ac" "${S}/nDPI/configure.ac" eautoreconf cd "${S}/nDPI"