blob: a5a43f45b6d2d3158c99eb86d901519807aa9177 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2021 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"
LICENSE="free-noncomm"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
RESTRICT="mirror" # bug #391789 comment #1
DEPEND="
app-arch/unzip
>=sys-apps/sed-4
"
S=${WORKDIR}
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
}
|