From 39c2d8e657f5a12c6b176d65823161bde9e75cbd Mon Sep 17 00:00:00 2001 From: NHOrus Date: Tue, 31 Dec 2024 11:33:07 +0400 Subject: [PATCH] net-analyzer/traceproto: update EAPI 7 -> 8, remove dmalloc dmalloc was the only thing enabled by "debug" use, removed Signed-off-by: NHOrus Signed-off-by: Sam James --- net-analyzer/traceproto/traceproto-1.1.2_beta1.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/net-analyzer/traceproto/traceproto-1.1.2_beta1.ebuild b/net-analyzer/traceproto/traceproto-1.1.2_beta1.ebuild index 5b09f203a5388..8205937587164 100644 --- a/net-analyzer/traceproto/traceproto-1.1.2_beta1.ebuild +++ b/net-analyzer/traceproto/traceproto-1.1.2_beta1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools @@ -14,13 +14,11 @@ SRC_URI="mirror://gentoo/${PN}-${MY_PV}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc x86" -IUSE="debug" RDEPEND=" net-libs/libnet:1.1 net-libs/libpcap sys-libs/ncurses:0= - debug? ( dev-libs/dmalloc ) " DEPEND="${RDEPEND}" BDEPEND=" @@ -43,5 +41,5 @@ src_prepare() { } src_configure() { - econf $(use_enable debug dmalloc) + econf --disable-dmalloc }