diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-04-01 15:07:52 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-13 12:28:06 +0300 |
commit | e8dec4445ce286e56ed1b1281b466eed679dfd39 (patch) | |
tree | 53113838a0eb4bc76fa9d299510cac99fc8309be /net-analyzer | |
parent | x11-plugins/pidgin-bot-sentry: EAPI8 bump, fix LICENSE (diff) | |
download | gentoo-e8dec4445ce286e56ed1b1281b466eed679dfd39.tar.gz gentoo-e8dec4445ce286e56ed1b1281b466eed679dfd39.tar.bz2 gentoo-e8dec4445ce286e56ed1b1281b466eed679dfd39.zip |
net-analyzer/nuttcp: EAPI8 bump, use https
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/36042
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/nuttcp/nuttcp-8.1.4-r1.ebuild (renamed from net-analyzer/nuttcp/nuttcp-8.1.4.ebuild) | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net-analyzer/nuttcp/nuttcp-8.1.4.ebuild b/net-analyzer/nuttcp/nuttcp-8.1.4-r1.ebuild index 97c01c07adc1..e45ea3aabc0a 100644 --- a/net-analyzer/nuttcp/nuttcp-8.1.4.ebuild +++ b/net-analyzer/nuttcp/nuttcp-8.1.4-r1.ebuild @@ -1,18 +1,18 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit readme.gentoo-r1 systemd toolchain-funcs DESCRIPTION="Network performance measurement tool" -HOMEPAGE="http://www.nuttcp.net/" -SRC_URI="http://nuttcp.net/${PN}/${P}.tar.bz2" +HOMEPAGE="https://www.nuttcp.net/" +SRC_URI="https://nuttcp.net/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="ipv6 xinetd" +IUSE="xinetd" RDEPEND="xinetd? ( sys-apps/xinetd )" @@ -36,13 +36,13 @@ src_prepare() { } src_compile() { - emake "$(usex ipv6 APPEXT='' NOIPV6=-DNO_IPV6)" CC="$(tc-getCC)" + emake APPEXT='' CC="$(tc-getCC)" } src_install() { einstalldocs doman "${PN}".8 - newbin "${P}$(usex ipv6 '' -noipv6)" "${PN}" + newbin "${P}" "${PN}" newinitd "${FILESDIR}"/"${PN}".initd "${PN}" newconfd "${FILESDIR}"/"${PN}".confd "${PN}" |