diff options
author | Sam James <sam@gentoo.org> | 2021-03-15 23:26:00 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-15 23:26:00 +0000 |
commit | c8fe7197c0d6656614285bca88190a06f80477a6 (patch) | |
tree | 198edbe49b344863972d4a0df76a4a2b4b08e3d0 /net-analyzer/nethogs | |
parent | net-analyzer/nethogs: added capabilities (diff) | |
download | gentoo-c8fe7197c0d6656614285bca88190a06f80477a6.tar.gz gentoo-c8fe7197c0d6656614285bca88190a06f80477a6.tar.bz2 gentoo-c8fe7197c0d6656614285bca88190a06f80477a6.zip |
net-analyzer/nethogs: keep stable keywords for 0.8.6-r1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/nethogs')
-rw-r--r-- | net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild | 3 | ||||
-rw-r--r-- | net-analyzer/nethogs/nethogs-0.8.6.ebuild | 33 |
2 files changed, 2 insertions, 34 deletions
diff --git a/net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild b/net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild index 4cf2b0092cbe..16a6a36ff847 100644 --- a/net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild +++ b/net-analyzer/nethogs/nethogs-0.8.6-r1.ebuild @@ -11,7 +11,8 @@ SRC_URI="https://github.com/raboof/nethogs/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ia64 ~x86" +KEYWORDS="amd64 ~arm ~ia64 x86" + DOCS=( DESIGN README.decpcap.txt README.md ) RDEPEND=" diff --git a/net-analyzer/nethogs/nethogs-0.8.6.ebuild b/net-analyzer/nethogs/nethogs-0.8.6.ebuild deleted file mode 100644 index bef9dec145fd..000000000000 --- a/net-analyzer/nethogs/nethogs-0.8.6.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit 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 ~ia64 x86" - -RDEPEND=" - net-libs/libpcap - sys-libs/ncurses:0= -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" - -src_compile() { - tc-export CC CXX - emake NCURSES_LIBS="$( $(tc-getPKG_CONFIG) --libs ncurses )" ${PN} -} - -src_install() { - emake DESTDIR="${ED}" PREFIX="/usr" install - dodoc DESIGN README.decpcap.txt README.md -} |