blob: 4a68e50190e949dd4236b0e8db18b05f46d405f4 (
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
|
# Copyright 1999-2005 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-r11.ebuild,v 1.1 2005/02/12 03:18:08 vapier Exp $
inherit flag-o-matic toolchain-funcs eutils
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-1.0.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="nls build static"
RDEPEND=""
DEPEND="nls? ( sys-devel/gettext )
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${WORKDIR}/patch
cp ${WORKDIR}/extra/config.{h,make} .
cp ${WORKDIR}/extra/ether-wake.c .
cp ${WORKDIR}/extra/ether-wake.8 man/en_US/
mkdir include/linux
cp ${WORKDIR}/extra/if_infiniband.h include/linux/
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"
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 CC
emake libdir || die "emake libdir failed"
emake || die "emake failed"
emake ether-wake || die "ether-wake failed to build"
if use nls ; then
emake i18ndir || die "emake i18ndir failed"
fi
}
src_install() {
make BASEDIR="${D}" install || die "make install failed"
dosbin ether-wake || die "dosbin failed"
mv "${D}"/bin/* "${D}"/sbin || die "mv failed"
mv "${D}"/sbin/{hostname,domainname,netstat,dnsdomainname,ypdomainname,nisdomainname} "${D}"/bin \
|| die "mv failed"
dodir /usr/bin
dosym /bin/hostname /usr/bin/hostname
if ! use build ; then
dodoc README README.ipv6 TODO
else
# only install /bin/hostname
rm -rf "${D}"/usr "${D}"/sbin
rm -f "${D}"/bin/{domainname,netstat,dnsdomainname,ypdomainname,nisdomainname}
fi
}
|