From bff4a82e074ac7b7a8ed0b6d733ff9c247cdae26 Mon Sep 17 00:00:00 2001 From: Jakov Smolić Date: Tue, 11 Jan 2022 22:07:22 +0100 Subject: net-analyzer/jnettop: Port to EAPI 8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/826814 Closes: https://bugs.gentoo.org/738074 Signed-off-by: Jakov Smolić --- net-analyzer/jnettop/jnettop-0.13.0-r1.ebuild | 46 -------------------------- net-analyzer/jnettop/jnettop-0.13.0-r2.ebuild | 47 +++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 46 deletions(-) delete mode 100644 net-analyzer/jnettop/jnettop-0.13.0-r1.ebuild create mode 100644 net-analyzer/jnettop/jnettop-0.13.0-r2.ebuild (limited to 'net-analyzer/jnettop') diff --git a/net-analyzer/jnettop/jnettop-0.13.0-r1.ebuild b/net-analyzer/jnettop/jnettop-0.13.0-r1.ebuild deleted file mode 100644 index 546fa03600b3..000000000000 --- a/net-analyzer/jnettop/jnettop-0.13.0-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools epatch - -DESCRIPTION="A top like console network traffic visualiser" -HOMEPAGE="http://jnettop.kubs.info/" -SRC_URI="http://jnettop.kubs.info/dist/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="berkdb ncurses syslog" - -RDEPEND=" - net-libs/libpcap - >=dev-libs/glib-2.0.1 - berkdb? ( =sys-libs/db-4* ) - ncurses? ( sys-libs/ncurses ) - syslog? ( virtual/logger ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog NEWS README ) - -src_prepare() { - epatch \ - "${FILESDIR}/${P}-asneeded.patch" \ - "${FILESDIR}/${P}-tinfo.patch" - eautoreconf -} - -src_configure() { - econf \ - $(use_with ncurses) \ - $(use_with berkdb db4) \ - $(use_with syslog) -} - -src_install() { - default - newdoc .${PN} ${PN}.dotfile -} diff --git a/net-analyzer/jnettop/jnettop-0.13.0-r2.ebuild b/net-analyzer/jnettop/jnettop-0.13.0-r2.ebuild new file mode 100644 index 000000000000..f94cbf95ae1c --- /dev/null +++ b/net-analyzer/jnettop/jnettop-0.13.0-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="A top like console network traffic visualiser" +HOMEPAGE="https://sourceforge.net/projects/jnettop" +SRC_URI="http://jnettop.kubs.info/dist/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~arm ~arm64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux" +IUSE="berkdb ncurses syslog" + +RDEPEND=" + net-libs/libpcap + >=dev-libs/glib-2.0.1 + berkdb? ( =sys-libs/db-4* ) + ncurses? ( sys-libs/ncurses ) + syslog? ( virtual/logger ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}/${P}-asneeded.patch" + "${FILESDIR}/${P}-tinfo.patch" +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_with ncurses) \ + $(use_with berkdb db4) \ + $(use_with syslog) +} + +src_install() { + default + newdoc .${PN} ${PN}.dotfile +} -- cgit v1.2.3-65-gdbad