diff options
author | Sam James <sam@gentoo.org> | 2021-03-22 08:05:30 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-22 08:09:23 +0000 |
commit | ddb406bc27e8fb61b4a9b3047036762fafc59639 (patch) | |
tree | 566a96adfb13c95111d3314a5efa1f2815ab7839 /net-analyzer | |
parent | net-analyzer/httping: don't assume ncurses is built with unicode support (diff) | |
download | gentoo-ddb406bc27e8fb61b4a9b3047036762fafc59639.tar.gz gentoo-ddb406bc27e8fb61b4a9b3047036762fafc59639.tar.bz2 gentoo-ddb406bc27e8fb61b4a9b3047036762fafc59639.zip |
net-analyzer/httping: port to EAPI 7
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/httping/httping-2.5.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/net-analyzer/httping/httping-2.5.ebuild b/net-analyzer/httping/httping-2.5.ebuild index 5a90ceb79102..70c43b0cd87e 100644 --- a/net-analyzer/httping/httping-2.5.ebuild +++ b/net-analyzer/httping/httping-2.5.ebuild @@ -1,12 +1,13 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit eutils toolchain-funcs flag-o-matic +EAPI=7 + +inherit toolchain-funcs flag-o-matic DESCRIPTION="http protocol ping-like program" -HOMEPAGE="http://www.vanheusden.com/httping/" -SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz" +HOMEPAGE="https://www.vanheusden.com/httping/" +SRC_URI="https://www.vanheusden.com/${PN}/${P}.tgz" LICENSE="GPL-2" SLOT="0" @@ -21,10 +22,8 @@ RDEPEND=" libressl? ( dev-libs/libressl:0= ) ) " -DEPEND=" - ${RDEPEND} - ncurses? ( virtual/pkgconfig ) -" +DEPEND="${RDEPEND}" +BDEPEND="ncurses? ( virtual/pkgconfig )" # This would bring in test? ( dev-util/cppcheck ) but unlike # upstream we should only care about compile/run time testing |