blob: ecf456ab71d66ff88a8b4bc850ab25686d9e32bf (
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
|
# 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_p20071202044231-r1.ebuild,v 1.10 2008/09/30 11:33:15 armin76 Exp $
inherit flag-o-matic toolchain-funcs eutils
DESCRIPTION="Standard Linux networking tools"
HOMEPAGE="http://net-tools.berlios.de/"
SRC_URI="mirror://gentoo/${P}.tar.lzma"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
IUSE="nls static"
RDEPEND=""
DEPEND="nls? ( sys-devel/gettext )
app-arch/lzma-utils"
maint_pkg_create() {
cd /usr/local/src/net-tools
#git-update
local stamp=$(git log -n1 --pretty=format:%ai | sed -e 's:[- :]::g' -e 's:+.*::')
local pv="${PV/_p*}_p${stamp}"
local p="${PN}-${pv}"
git-archive --prefix="${p}/" HEAD | lzma > "${T}"/${p}.tar.lzma
du -b "${T}"/${p}.tar.lzma
}
pkg_setup() { [[ -n ${VAPIER_LOVES_YOU} ]] && maint_pkg_create ; }
src_unpack() {
unpack ${A}
cd "${S}"
EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" epatch "${FILESDIR}"/${PV}/
sed -i "/^bool.*I18N/s:[yn]$:$(use nls && echo y || echo n):" config.in
if use static ; then
append-flags -static
append-ldflags -static
fi
}
src_compile() {
tc-export AR CC
yes "" | ./configure.sh config.in || die
emake libdir || die
emake || die
if use nls ; then
emake i18ndir || die "emake i18ndir failed"
fi
}
src_install() {
emake BASEDIR="${D}" install || die "make install failed"
dodoc README README.ipv6 TODO
}
pkg_postinst() {
einfo "etherwake and such have been split into net-misc/ethercard-diag"
}
|