blob: 4c5c6ad43a47806bf860039bb79bf5158b6c1e2d (
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
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netio/netio-1.26.ebuild,v 1.6 2007/05/01 18:11:10 genone Exp $
inherit toolchain-funcs versionator
MY_P="${PN}$(get_version_component_range 1)$(get_version_component_range 2)"
DESCRIPTION="a network benchmark for DOS, OS/2, Windows NT and Unix that measures net througput with NetBIOS and TCP/IP protocols."
HOMEPAGE="http://www.ars.de/ars/ars.nsf/docs/netio"
SRC_URI="mirror://gentoo/${MY_P}.zip"
LICENSE="free-noncomm"
SLOT="0"
KEYWORDS="~amd64 ppc ~ppc-macos sparc x86"
IUSE=""
DEPEND="virtual/libc
app-arch/unzip
>=sys-apps/sed-4"
RDEPEND="virtual/libc"
S="${WORKDIR}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e 's|\(CFLAGS\)=|\1?=|g' \
-e 's|\(CC\)=|\1?=|g' Makefile || die "sed Makefile failed"
}
src_compile() {
emake linux \
CC="$(tc-getCC)" \
CFLAGS="-DUNIX ${CFLAGS}" \
|| die "emake failed"
}
src_install() {
dobin netio || die "dobin failed"
# to be sure to comply with the license statement in netio.doc,
# just install everything included in the package to doc
dodoc netio.doc FILE_ID.DIZ getopt.h netb_1_c.h netbios.h netio.c \
netb_2_c.h netio.doc getopt.c Makefile netbios.c
# also install binaries
dodoc bin/os2-i386.exe bin/win32-i386.exe bin/linux-i386
}
pkg_postinst() {
echo
elog "NOTE: all files included in the upstream zip file have"
elog "been installed to /usr/share/doc/${PF}, as required by"
elog "the license."
echo
}
|