blob: dac268425d288c52fa2c537989585be9ff6acf4e (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/iputils/iputils-020927.ebuild,v 1.4 2003/02/24 19:42:04 dragon Exp $
S="${WORKDIR}/${PN}"
DESCRIPTION="Network monitoring tools including ping and ping6"
SRC_URI="ftp://ftp.inr.ac.ru/ip-routing/${PN}-ss${PV}.tar.gz"
HOMEPAGE="ftp://ftp.inr.ac.ru/ip-routing"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~sparc ~alpha ~ppc ~hppa ~mips"
IUSE="doc"
DEPEND="virtual/glibc
sys-kernel/linux-headers
doc? ( app-text/openjade
dev-perl/SGMLSpm
app-text/docbook-sgml-dtd
app-text/docbook-sgml-utils )"
RDEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
mv Makefile Makefile.orig
sed "27s:-O2:${CFLAGS}:" Makefile.orig >Makefile
}
src_compile() {
make KERNEL_INCLUDE="/usr/include" || die
if [ "`use doc`" ]; then
make html || die
fi
make man || die
}
src_install () {
into /
dobin ping ping6
dosbin arping
into /usr
dobin tracepath tracepath6 traceroute6
dosbin clockdiff rarpd rdisc ipg tftpd
fperms 4755 /bin/ping /bin/ping6 /usr/bin/tracepath \
/usr/bin/tracepath6 /usr/bin/traceroute6
dodoc INSTALL RELNOTES
doman doc/*.8
if [ "`use doc`" ]; then
dohtml doc/*.html
fi
}
|