diff options
author | Jeroen Roovers <jer@gentoo.org> | 2017-11-16 11:12:11 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2017-11-16 11:12:11 +0100 |
commit | aaebe8559ec6722a1c735e4ec165ae07a6aa1cf2 (patch) | |
tree | 6e09cb3d75b44e84ac6486e38ba08d70637229e3 /net-analyzer/netio | |
parent | www-client/opera-developer: Old. (diff) | |
download | gentoo-aaebe8559ec6722a1c735e4ec165ae07a6aa1cf2.tar.gz gentoo-aaebe8559ec6722a1c735e4ec165ae07a6aa1cf2.tar.bz2 gentoo-aaebe8559ec6722a1c735e4ec165ae07a6aa1cf2.zip |
net-analyzer/netio: Update HOMEPAGE/SRC_URI by Nico Baggus (bug #637660).
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'net-analyzer/netio')
-rw-r--r-- | net-analyzer/netio/netio-1.32-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/net-analyzer/netio/netio-1.32-r1.ebuild b/net-analyzer/netio/netio-1.32-r1.ebuild new file mode 100644 index 000000000000..afba5e9baeba --- /dev/null +++ b/net-analyzer/netio/netio-1.32-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils toolchain-funcs + +DESCRIPTION="measures net throughput with NetBIOS and TCP/IP protocols" +HOMEPAGE="https://web.ars.de/netio/" +SRC_URI="http://web.ars.de/wp-content/uploads/2017/04/${PN}${PV/./}.zip" + +LICENSE="free-noncomm" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +RESTRICT="mirror" # bug #391789 comment #1 + +DEPEND=" + app-arch/unzip + >=sys-apps/sed-4 +" + +S="${WORKDIR}" +PATCHES=( + "${FILESDIR}"/${PN}-1.26-linux-include.patch +) + +src_prepare() { + edos2unix *.c *.h *.doc + + default + + sed -i \ + -e "s|LFLAGS=\"\"|LFLAGS?=\"${LDFLAGS}\"|g" \ + -e 's|\(CC\)=|\1?=|g' \ + -e 's|\(CFLAGS\)=|\1+=|g' \ + Makefile || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + linux +} + +src_install() { + dobin netio + dodoc netio.doc +} |