diff options
Diffstat (limited to 'net-analyzer/jnettop/jnettop-0.13.0-r2.ebuild')
-rw-r--r-- | net-analyzer/jnettop/jnettop-0.13.0-r2.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
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 +} |