vconfig: upgraded package to upstream

Upgraded net-misc/vconfig to version 1.9 on amd64, arm, x86

BUG=None
TEST=cros-deploy and test with USB-Ethernet interface

Change-Id: Ibf406117e30e53ec329bb4b0dd080081cb2dc608
Reviewed-on: https://chromium-review.googlesource.com/200646
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Commit-Queue: Paul Stewart <pstew@chromium.org>
Tested-by: Paul Stewart <pstew@chromium.org>
diff --git a/metadata/md5-cache/net-misc/vconfig-1.9 b/metadata/md5-cache/net-misc/vconfig-1.9
new file mode 100644
index 0000000..0222d93
--- /dev/null
+++ b/metadata/md5-cache/net-misc/vconfig-1.9
@@ -0,0 +1,10 @@
+DEFINED_PHASES=compile install postinst
+DESCRIPTION=802.1Q vlan control utility
+HOMEPAGE=http://www.candelatech.com/~greear/vlan.html
+IUSE=static
+KEYWORDS=*
+LICENSE=GPL-2
+SLOT=0
+SRC_URI=http://www.candelatech.com/~greear/vlan/vlan.1.9.tar.gz
+_eclasses_=eutils	a108f00cccac414097bcbbbb5de01762	flag-o-matic	c3131dc67d3bd39f044e92b8280505e4	multilib	fac675dcccf94392371a6abee62d909f	toolchain-funcs	48b38a216afb92db6314d6c3187abea3
+_md5_=876edb9cafc61159d665afec124210dc
diff --git a/net-misc/vconfig/Manifest b/net-misc/vconfig/Manifest
new file mode 100644
index 0000000..7c94177
--- /dev/null
+++ b/net-misc/vconfig/Manifest
@@ -0,0 +1 @@
+DIST vlan.1.9.tar.gz 176135 SHA256 3b8f0a1bf0d3642764e5f646e1f3bbc8b1eeec474a77392d9aeb4868842b4cca
diff --git a/net-misc/vconfig/metadata.xml b/net-misc/vconfig/metadata.xml
new file mode 100644
index 0000000..712c2d2
--- /dev/null
+++ b/net-misc/vconfig/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>base-system</herd>
+	<longdescription>
+		The vconfig program allows you to create and remove vlan-devices on a
+		vlan enabled kernel. Vlan-devices are virtual ethernet devices which
+		represents the virtual lans on the physical lan.
+	</longdescription>
+</pkgmetadata>
diff --git a/net-misc/vconfig/vconfig-1.9.ebuild b/net-misc/vconfig/vconfig-1.9.ebuild
new file mode 100644
index 0000000..97df680
--- /dev/null
+++ b/net-misc/vconfig/vconfig-1.9.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/vconfig/vconfig-1.9.ebuild,v 1.13 2009/09/23 19:47:33 patrick Exp $
+
+inherit eutils flag-o-matic toolchain-funcs
+
+MY_PN="vlan"
+S=${WORKDIR}/${MY_PN}
+
+DESCRIPTION="802.1Q vlan control utility"
+HOMEPAGE="http://www.candelatech.com/~greear/vlan.html"
+SRC_URI="http://www.candelatech.com/~greear/vlan/${MY_PN}.${PV}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="*"
+IUSE="static"
+
+src_compile() {
+	use static && appened-ldflags -static
+	emake purge
+	emake CC="$(tc-getCC)" CCFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" STRIP="true" vconfig || die
+}
+
+src_install() {
+	into /
+	dosbin vconfig || die "dosbin error"
+
+	sed -e "s:/usr/local/bin/vconfig:/sbin/vconfig:g" -i vlan_test.pl
+	sed -e "s:/usr/local/bin/vconfig:/sbin/vconfig:g" -i vlan_test2.pl
+
+	doman vconfig.8 || die "doman error"
+	dohtml howto.html vlan.html || die "dohtml error"
+	dodoc CHANGELOG README vlan_test*.pl || die "dodoc error"
+}
+
+pkg_postinst() {
+	ewarn "MTU problems exist for many ethernet drivers."
+	ewarn "Reduce the MTU on the interface to 1496 to work around them."
+}