diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-09-28 23:44:38 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-09-29 00:17:55 -0400 |
commit | 19836e5d1ee7df5af16d47ad2767a337fd5796a8 (patch) | |
tree | 3ff128a189e5da33cfc2ea125b78c73c5ccc6b8e /net-analyzer | |
parent | dev-util/ftjam: fix build with clang16 (diff) | |
download | gentoo-19836e5d1ee7df5af16d47ad2767a337fd5796a8.tar.gz gentoo-19836e5d1ee7df5af16d47ad2767a337fd5796a8.tar.bz2 gentoo-19836e5d1ee7df5af16d47ad2767a337fd5796a8.zip |
net-analyzer/pathload: EAPI7->8, fix license, tidy a bit
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/pathload/pathload-1.3.2-r1.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/net-analyzer/pathload/pathload-1.3.2-r1.ebuild b/net-analyzer/pathload/pathload-1.3.2-r1.ebuild index 47f7848cc5a8..0c086a07ae5c 100644 --- a/net-analyzer/pathload/pathload-1.3.2-r1.ebuild +++ b/net-analyzer/pathload/pathload-1.3.2-r1.ebuild @@ -1,24 +1,26 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + inherit toolchain-funcs DESCRIPTION="Non-intrusive utility for estimation of available bandwidth of Internet paths" HOMEPAGE="https://www.cc.gatech.edu/fac/constantinos.dovrolis/bw-est/pathload.html" SRC_URI="https://dev.gentoo.org/~jsmolic/distfiles/${P}.tar.gz" +S="${WORKDIR}/${P/-/_}" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" -S=${WORKDIR}/${PN}_${PV} PATCHES=( - "${FILESDIR}"/${PN}-1.3.2-make.patch + "${FILESDIR}"/${P}-make.patch ) src_configure() { tc-export CC + default } |