blob: 6309c1c07590818830bf5db58ef62b1eb0e0152a (
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
|
# Copyright 1999-2010 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_p20090728014017-r1.ebuild,v 1.10 2010/04/10 16:59:13 armin76 Exp $
inherit flag-o-matic toolchain-funcs eutils
PATCH_VER="3"
DESCRIPTION="Standard Linux networking tools"
HOMEPAGE="http://net-tools.berlios.de/"
SRC_URI="mirror://gentoo/${P}.tar.lzma
mirror://gentoo/${P}-patches-${PATCH_VER}.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/xz-utils app-arch/lzma-utils )"
maint_pkg_create() {
cd /usr/local/src/net-tools
#git-update
local stamp=$(git log -n1 --pretty=format:%ai master | sed -e 's:[- :]::g' -e 's:+.*::')
local pv="${PV/_p*}_p${stamp}"
local p="${PN}-${pv}"
git archive --prefix="${p}/" master | lzma > "${T}"/${p}.tar.lzma
local patches="${p}-patches-${PATCH_VER}"
mkdir "${T}"/${patches}
git format-patch -o "${T}"/${patches} master..gentoo > /dev/null
tar cf - -C "${T}" ${patches} | lzma > "${T}"/${patches}.tar.lzma
du -b "${T}"/*.tar.lzma
}
pkg_setup() { [[ -n ${VAPIER_LOVES_YOU} ]] && maint_pkg_create ; }
set_opt() {
local opt=$1 ans
shift
ans=$("$@" && echo y || echo n)
einfo "Setting option ${opt} to ${ans}"
sed -i \
-e "/^bool.* ${opt} /s:[yn]$:${ans}:" \
config.in || die
}
src_unpack() {
unpack ${A}
cd "${S}"
EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" epatch "${WORKDIR}"/${P}-patches-${PATCH_VER}
set_opt I18N use nls
set_opt HAVE_HWIB has_version '>=sys-kernel/linux-headers-2.6'
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"
}
|