mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
Change was created by running the following command::
ekeyword ^ia64 */*/*.ebuild
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
37 lines
781 B
Bash
37 lines
781 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit fcaps toolchain-funcs
|
|
|
|
DESCRIPTION="A small 'net top' tool, grouping bandwidth by process"
|
|
HOMEPAGE="https://github.com/raboof/nethogs"
|
|
SRC_URI="https://github.com/raboof/nethogs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm ~arm64 x86"
|
|
|
|
RDEPEND="net-libs/libpcap
|
|
sys-libs/ncurses:="
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
DOCS=( DESIGN README.decpcap.txt README.md )
|
|
|
|
FILECAPS=(
|
|
cap_net_admin,cap_net_raw usr/sbin/nethogs
|
|
)
|
|
|
|
src_compile() {
|
|
tc-export CC CXX
|
|
|
|
emake NCURSES_LIBS="$( $(tc-getPKG_CONFIG) --libs ncurses )" ${PN}
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${ED}" PREFIX="/usr" install
|
|
einstalldocs
|
|
}
|