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 7318E1382C5 for ; Sat, 3 Apr 2021 15:57:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E63BE091F; Sat, 3 Apr 2021 15:57:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05959E091D for ; Sat, 3 Apr 2021 15:57:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0CE56340C33 for ; Sat, 3 Apr 2021 15:57:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 868686EB for ; Sat, 3 Apr 2021 15:57:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1617465318.4e6c59b9fbc7bac2d6b6525d4b0bbea0992db7a2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/tcptrack/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/tcptrack/tcptrack-1.4.2.ebuild X-VCS-Directories: net-analyzer/tcptrack/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4e6c59b9fbc7bac2d6b6525d4b0bbea0992db7a2 X-VCS-Branch: master Date: Sat, 3 Apr 2021 15:57:17 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f02d29d5-7bec-4f26-b901-78d779dd981d X-Archives-Hash: 62eb574ce3ce3d6fba1e3a715e8e6885 commit: 4e6c59b9fbc7bac2d6b6525d4b0bbea0992db7a2 Author: Sam James gentoo org> AuthorDate: Fri Apr 2 00:54:16 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 3 15:55:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e6c59b9 net-analyzer/tcptrack: port to EAPI 7 Signed-off-by: Sam James gentoo.org> net-analyzer/tcptrack/tcptrack-1.4.2.ebuild | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/net-analyzer/tcptrack/tcptrack-1.4.2.ebuild b/net-analyzer/tcptrack/tcptrack-1.4.2.ebuild index 235ac5dff8d..30fbb10604a 100644 --- a/net-analyzer/tcptrack/tcptrack-1.4.2.ebuild +++ b/net-analyzer/tcptrack/tcptrack-1.4.2.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit autotools eutils +EAPI=7 + +inherit autotools DESCRIPTION="Passive per-connection tcp bandwidth monitor" HOMEPAGE="http://www.rhythm.cx/~steve/devel/tcptrack/" @@ -12,17 +13,23 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~ppc x86" +BDEPEND="virtual/pkgconfig" DEPEND=" net-libs/libpcap sys-libs/ncurses " -RDEPEND=" - ${DEPEND} - virtual/pkgconfig -" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}"/${P}-tinfo.patch +) src_prepare() { - epatch "${FILESDIR}"/${P}-tinfo.patch + default + sed -i src/Makefile.am -e 's| -Werror||g' || die + + mv configure.{in,ac} || die + eautoreconf }