blob: 959b18be6deb830bab45ed143a486dd21b9d9211 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/net-tools/net-tools-1.60-r13.ebuild,v 1.12 2008/04/10 21:13:43 vapier Exp $
inherit flag-o-matic toolchain-funcs eutils
PVER="1.6"
DESCRIPTION="Standard Linux networking tools"
HOMEPAGE="http://sites.inka.de/lina/linux/NetTools/"
SRC_URI="http://www.tazenda.demon.co.uk/phil/net-tools/${P}.tar.bz2
mirror://gentoo/${P}-patches-${PVER}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
IUSE="nls static"
RDEPEND="!sys-apps/mii-diag
!net-misc/etherwake
!sys-apps/nictools"
DEPEND="nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}"/patch/*.patch
cp "${WORKDIR}"/extra/config.{h,make} . || die
mkdir include/linux
cp "${WORKDIR}"/extra/*.h include/linux/
mv "${WORKDIR}"/extra/ethercard-diag/ "${S}"/ || die
if use static ; then
append-flags -static
append-ldflags -static
fi
sed -i \
-e "/^COPTS =/s:=:=${CFLAGS}:" \
-e "/^LOPTS =/s:=:=${LDFLAGS}:" \
Makefile || die "sed FLAGS Makefile failed"
sed -i \
-e s/CFLAGS=/CFLAGS?=/ ethercard-diag/pub/diag/Makefile \
|| die "I like turtles"
if ! use nls ; then
sed -i \
-e '/define I18N/s:1$:0:' config.h \
|| die "sed config.h failed"
sed -i \
-e '/^I18N=/s:1$:0:' config.make \
|| die "sed config.make failed"
fi
}
src_compile() {
tc-export AR CC
emake libdir || die "emake libdir failed"
emake || die "emake failed"
emake -C ethercard-diag || die "emake ethercard-diag failed"
if use nls ; then
emake i18ndir || die "emake i18ndir failed"
fi
}
src_install() {
emake BASEDIR="${D}" install || die "make install failed"
emake -C ethercard-diag DESTDIR="${D}" install || die "make install ethercard-diag failed"
mv "${D}"/usr/share/man/man8/ether{,-}wake.8
mv "${D}"/usr/sbin/mii-diag "${D}"/sbin/ || die "mv mii-diag failed"
mv "${D}"/bin/* "${D}"/sbin/ || die "mv bin to sbin failed"
mv "${D}"/sbin/{hostname,domainname,netstat,dnsdomainname,ypdomainname,nisdomainname} "${D}"/bin/ \
|| die "mv sbin to bin failed"
dodir /usr/bin
dosym /bin/hostname /usr/bin/hostname
dodoc README README.ipv6 TODO
}
|