mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-28 09:01:55 +02:00
net-tools: import from upstream Gentoo
Grab the latest stable version from upstream. BUG=chromium-os:24046 TEST=`emerge net-tools` works TEST=`emerge-amd64-generic net-tools` works TEST=`emerge-arm-generic net-tools` works TEST=`emerge-x86-generic net-tools` works TEST=build_packages+build_image for alex boots and can get online Change-Id: I57947af920dd93c5c9b09d98acb0d6272bf87f48 Reviewed-on: https://gerrit.chromium.org/gerrit/12769 Reviewed-by: David James <davidjames@chromium.org> Commit-Ready: Mike Frysinger <vapier@chromium.org> Tested-by: Mike Frysinger <vapier@chromium.org>
This commit is contained in:
parent
8954551460
commit
d2bb8fee43
@ -0,0 +1,85 @@
|
||||
# Copyright 1999-2011 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_p20110409135728.ebuild,v 1.9 2011/07/29 08:43:16 zmedico Exp $
|
||||
|
||||
EAPI="3"
|
||||
|
||||
inherit flag-o-matic toolchain-funcs eutils
|
||||
|
||||
PATCH_VER="1"
|
||||
DESCRIPTION="Standard Linux networking tools"
|
||||
HOMEPAGE="http://net-tools.berlios.de/"
|
||||
SRC_URI="mirror://gentoo/${P}.tar.xz
|
||||
mirror://gentoo/${P}-patches-${PATCH_VER}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-linux"
|
||||
IUSE="nls static"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/xz-utils"
|
||||
|
||||
maint_pkg_create() {
|
||||
cd /usr/local/src/net-tools/git
|
||||
#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="nt/" master | tar xf - -C "${T}"
|
||||
pushd "${T}" >/dev/null
|
||||
pushd nt >/dev/null
|
||||
sed -i "/^RELEASE/s:=.*:=${pv}:" Makefile || die
|
||||
emake dist >/dev/null
|
||||
popd >/dev/null
|
||||
zcat ${p}.tar.gz | xz > ${p}.tar.xz
|
||||
rm -f ${p}.tar.gz
|
||||
popd >/dev/null
|
||||
|
||||
local patches="${p}-patches-${PATCH_VER}"
|
||||
local d="${T}/${patches}"
|
||||
mkdir "${d}"
|
||||
git format-patch -o "${d}" master..gentoo > /dev/null
|
||||
echo "From http://git.overlays.gentoo.org/gitweb/?p=proj/net-tools.git" > "${d}"/README
|
||||
tar cf - -C "${T}" ${d##*/} | xz > "${T}"/${patches}.tar.xz
|
||||
rm -rf "${d}"
|
||||
|
||||
du -b "${T}"/*.tar.xz
|
||||
}
|
||||
|
||||
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_prepare() {
|
||||
EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" epatch "${WORKDIR}"/${P}-patches-${PATCH_VER}
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
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
|
||||
tc-export AR CC
|
||||
yes "" | ./configure.sh config.in || die
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${ED}" install || die
|
||||
dodoc README README.ipv6 TODO
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
einfo "etherwake and such have been split into net-misc/ethercard-diag"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user