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 EB72A158086 for ; Thu, 21 Oct 2021 19:15:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E195E087F; Thu, 21 Oct 2021 19:15:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45E3EE087F for ; Thu, 21 Oct 2021 19:15:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2CBCF3432E3 for ; Thu, 21 Oct 2021 19:15:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F797166 for ; Thu, 21 Oct 2021 19:15:39 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1634843114.69b1d4acd358834a5c7028aab741694980a969d3.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/rtpbreak/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/rtpbreak/rtpbreak-1.3a-r1.ebuild net-analyzer/rtpbreak/rtpbreak-1.3a-r2.ebuild X-VCS-Directories: net-analyzer/rtpbreak/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 69b1d4acd358834a5c7028aab741694980a969d3 X-VCS-Branch: master Date: Thu, 21 Oct 2021 19:15:39 +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: aa6b93e9-ab2d-45ef-832b-9f75c3b85efc X-Archives-Hash: 09a1d391f1278402c3cc184872827203 commit: 69b1d4acd358834a5c7028aab741694980a969d3 Author: Jakov Smolić gentoo org> AuthorDate: Thu Oct 21 19:05:14 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Thu Oct 21 19:05:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69b1d4ac net-analyzer/rtpbreak: Port to EAPI 8 Signed-off-by: Jakov Smolić gentoo.org> ...{rtpbreak-1.3a-r1.ebuild => rtpbreak-1.3a-r2.ebuild} | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/net-analyzer/rtpbreak/rtpbreak-1.3a-r1.ebuild b/net-analyzer/rtpbreak/rtpbreak-1.3a-r2.ebuild similarity index 72% rename from net-analyzer/rtpbreak/rtpbreak-1.3a-r1.ebuild rename to net-analyzer/rtpbreak/rtpbreak-1.3a-r2.ebuild index 557c9895694..bdd5d139be1 100644 --- a/net-analyzer/rtpbreak/rtpbreak-1.3a-r1.ebuild +++ b/net-analyzer/rtpbreak/rtpbreak-1.3a-r2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 -inherit epatch toolchain-funcs +inherit toolchain-funcs DESCRIPTION="Analyze any RTP session through heuristics over UDP network traffic" HOMEPAGE="http://xenion.reactive-search.com/?page_id=7" @@ -17,11 +17,10 @@ DEPEND="net-libs/libnet:1.1 >=net-libs/libpcap-0.7" RDEPEND="${DEPEND}" -src_prepare() { - # Use limits.h PATH_MAX - epatch "${FILESDIR}"/${P}-limits.patch \ - "${FILESDIR}"/${P}-missing-headers.patch -} +PATCHES=( + "${FILESDIR}"/${P}-limits.patch + "${FILESDIR}"/${P}-missing-headers.patch +) src_compile() { emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" @@ -29,6 +28,6 @@ src_compile() { src_install() { dobin src/rtpbreak - dodoc CHANGELOG THANKS - dohtml -r doc + einstalldocs + dodoc -r doc }