diff options
Diffstat (limited to 'net-analyzer/netio/netio-1.33.ebuild')
-rw-r--r-- | net-analyzer/netio/netio-1.33.ebuild | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/net-analyzer/netio/netio-1.33.ebuild b/net-analyzer/netio/netio-1.33.ebuild deleted file mode 100644 index b4f396af8c4d..000000000000 --- a/net-analyzer/netio/netio-1.33.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit edos2unix toolchain-funcs - -DESCRIPTION="Network benchmark using TCP and UDP protocols" -HOMEPAGE="https://web.ars.de/netio/" -SRC_URI="https://www.ars.de/${PN}${PV/.}.zip" -S="${WORKDIR}" - -LICENSE="free-noncomm" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" -RESTRICT="mirror" # bug #391789 comment #1 - -BDEPEND="app-arch/unzip" - -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 -} |