blob: 282bed80ede43a48e7bfca98a36d70ab252c3bf6 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
# Copyright 1999-2004 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-r9.ebuild,v 1.14 2004/12/07 22:13:42 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}-gentoo-extra-1.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
IUSE="nls build static uclibc"
RDEPEND=""
DEPEND="nls? ( sys-devel/gettext )
>=sys-apps/sed-4"
src_unpack() {
PATCHDIR=${WORKDIR}/${P}-gentoo
unpack ${A}
cd ${S}
# Compile fix for 2.6 kernels
epatch ${FILESDIR}/net-tools-1.60-2.6-compilefix.patch
epatch ${FILESDIR}/${PV}-gcc34.patch #48167
epatch ${FILESDIR}/net-tools-1.60-cleanup-list-handling.patch
# Stack smashing attack in if_readlist_proc() from ifconfig - bug #58633
epatch ${FILESDIR}/net-tools-1.60-get_name.patch
# some redhat patches
epatch ${PATCHDIR}/net-tools-1.54-ipvs.patch
epatch ${PATCHDIR}/net-tools-1.57-bug22040.patch
epatch ${PATCHDIR}/net-tools-1.60-manydevs.patch
epatch ${PATCHDIR}/net-tools-1.60-miiioctl.patch
epatch ${PATCHDIR}/net-tools-1.60-virtualname.patch
epatch ${PATCHDIR}/net-tools-1.60-cycle.patch
# GCC-3.3 Compile Fix
epatch ${PATCHDIR}/${P}-multiline-string.patch
# manpage fix #29677
epatch ${FILESDIR}/${PV}-man.patch
cp ${PATCHDIR}/net-tools-1.60-config.h config.h
cp ${PATCHDIR}/net-tools-1.60-config.make config.make
if use static ; then
append-flags -static
append-ldflags -static
fi
sed -i \
-e 's/^libdir:/libdir: version.h/' \
-e "s:-O2 -Wall -g:${CFLAGS}:" \
-e "/^LOPTS =/ s/\$/${CFLAGS}/" Makefile \
|| die "sed Makefile failed"
sed -i -e "s:/usr/man:/usr/share/man:" man/Makefile \
|| die "sed man/Makefile failed"
if ! use uclibc ; then
cp -f ${PATCHDIR}/ether-wake.c ${S}
cp -f ${PATCHDIR}/ether-wake.8 ${S}/man/en_US
fi
if ! use nls ; then
sed -i -e 's:\(#define I18N\) 1:\1 0:' config.h || \
die "sed config.h failed"
sed -i -e 's:I18N=1:I18N=0:' config.make ||
die "sed config.make failed"
fi
touch config.{h,make} # sync timestamps
}
src_compile() {
# configure shouldn't run anymore so bug #820 shouldn't apply...
tc-export CC
emake libdir || die "emake libdir failed"
emake || die "emake failed"
if use nls ; then
emake i18ndir || die "emake i18ndir failed"
fi
if ! use uclibc ; then
$(tc-getCC) ${CFLAGS} -o ether-wake ether-wake.c || die "ether-wake failed to build"
fi
}
src_install() {
make BASEDIR="${D}" install || die "make install failed"
if ! use uclibc ; then
dosbin ether-wake || die "dosbin failed"
fi
mv ${D}/bin/* ${D}/sbin || die "mv failed"
mv ${D}/sbin/{hostname,domainname,netstat,dnsdomainname,ypdomainname,nisdomainname} ${D}/bin \
|| die "mv failed"
use uclibc && rm -f ${D}/bin/{yp,nis}domainname
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}
rm -f ${D}/bin/{ypdomainname,nisdomainname}
fi
}
|