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 AF3BB138330 for ; Mon, 26 Sep 2016 11:48:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C207BE0B8C; Mon, 26 Sep 2016 11:48:21 +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 4A340E0B8C for ; Mon, 26 Sep 2016 11:48:21 +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 4182B34092E for ; Mon, 26 Sep 2016 11:48:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A9902486 for ; Mon, 26 Sep 2016 11:48:18 +0000 (UTC) From: "Michael Weber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Weber" Message-ID: <1474890471.dd10ed8f733239e09ebe82949e68a9c36ad8b37a.xmw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/dnstop/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/dnstop/dnstop-20140915-r1.ebuild X-VCS-Directories: net-dns/dnstop/ X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber X-VCS-Revision: dd10ed8f733239e09ebe82949e68a9c36ad8b37a X-VCS-Branch: master Date: Mon, 26 Sep 2016 11:48:18 +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: 8bb85ef1-898a-4680-848c-21ae40355115 X-Archives-Hash: 711bc24e61f6e2aaf806b6f93a121f94 commit: dd10ed8f733239e09ebe82949e68a9c36ad8b37a Author: Michael Weber gentoo org> AuthorDate: Mon Sep 26 11:46:41 2016 +0000 Commit: Michael Weber gentoo org> CommitDate: Mon Sep 26 11:47:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd10ed8f net-dns/dnstop: Fix for ncurses[tinfo], thanks Fabio Scaccabarozzi, bug 595068. Package-Manager: portage-2.2.28 net-dns/dnstop/dnstop-20140915-r1.ebuild | 38 ++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/net-dns/dnstop/dnstop-20140915-r1.ebuild b/net-dns/dnstop/dnstop-20140915-r1.ebuild new file mode 100644 index 00000000..cb7eeef --- /dev/null +++ b/net-dns/dnstop/dnstop-20140915-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils flag-o-matic + +DESCRIPTION="Displays various tables of DNS traffic on your network" +HOMEPAGE="http://dnstop.measurement-factory.com/" +SRC_URI="http://dnstop.measurement-factory.com/src/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86" +IUSE="ipv6" + +RDEPEND="sys-libs/ncurses:0 + net-libs/libpcap[ipv6?]" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch_user +} + +src_configure() { + if has_version sys-libs/ncurses:0[tinfo] ; then + append-libs -ltinfo #bug 595068 + fi + econf \ + $(use_enable ipv6) +} + +src_install() { + dobin dnstop + doman dnstop.8 + dodoc CHANGES +}