ppp-scripts: upgraded package to upstream

Upgraded net-dialup/ppp-scripts to version 0 on amd64, arm

This is getting split out of net-dialup/ppp.

Note that we're still masking out 40-dns.sh in CL:1178231, which
will land before we pull in this ebuild anywhere.

BUG=chromium:874030
TEST=build; check `equery files`

Change-Id: If2e184f44015a939bacf3a38765c1a6f71454b7f
Reviewed-on: https://chromium-review.googlesource.com/1178230
Commit-Ready: Brian Norris <briannorris@chromium.org>
Tested-by: Brian Norris <briannorris@chromium.org>
Reviewed-by: Ben Chan <benchan@chromium.org>
Reviewed-by: Mike Frysinger <vapier@chromium.org>
diff --git a/metadata/md5-cache/net-dialup/ppp-scripts-0 b/metadata/md5-cache/net-dialup/ppp-scripts-0
new file mode 100644
index 0000000..8476301
--- /dev/null
+++ b/metadata/md5-cache/net-dialup/ppp-scripts-0
@@ -0,0 +1,11 @@
+DEFINED_PHASES=install
+DEPEND=!<net-dialup/ppp-2.4.7-r1
+DESCRIPTION=Common set of scripts for various PPP implementations
+EAPI=5
+HOMEPAGE=https://gentoo.org/
+KEYWORDS=*
+LICENSE=GPL-2
+RDEPEND=!<net-dialup/ppp-2.4.7-r1
+SLOT=0
+SRC_URI=https://dev.gentoo.org/~pinkbyte/distfiles/ppp-scripts-0.tar.xz
+_md5_=800dc8bef9325d1320589b7d1d85243a
diff --git a/net-dialup/ppp-scripts/Manifest b/net-dialup/ppp-scripts/Manifest
new file mode 100644
index 0000000..5da0993
--- /dev/null
+++ b/net-dialup/ppp-scripts/Manifest
@@ -0,0 +1 @@
+DIST ppp-scripts-0.tar.xz 1824 SHA256 41c9c8321ccc5a4b07079164528a83f9194c1640ac26cbf09894c493ab7394da SHA512 a36e6180b0acc8081b192602a2a5dbe765f1ba26e2cca8dc80d1dbc0e405b86acd6fe0cf655fb520c9f45373528773e64545876fd3370ce3514ffd9858916971 WHIRLPOOL 828b4488ccf996ef3c62bbae9d322fc185a26da16bf335da576e7092657b159c3248526669074aa9968577babda653e3716d0262a36585436b0d4bc9afae2cfa
diff --git a/net-dialup/ppp-scripts/metadata.xml b/net-dialup/ppp-scripts/metadata.xml
new file mode 100644
index 0000000..6f49eba
--- /dev/null
+++ b/net-dialup/ppp-scripts/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<!-- maintainer-needed -->
+</pkgmetadata>
diff --git a/net-dialup/ppp-scripts/ppp-scripts-0.ebuild b/net-dialup/ppp-scripts/ppp-scripts-0.ebuild
new file mode 100644
index 0000000..d4fa602
--- /dev/null
+++ b/net-dialup/ppp-scripts/ppp-scripts-0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+DESCRIPTION="Common set of scripts for various PPP implementations"
+HOMEPAGE="https://gentoo.org/"
+SRC_URI="https://dev.gentoo.org/~pinkbyte/distfiles/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="*"
+
+DEPEND="!<net-dialup/ppp-2.4.7-r1"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}"
+
+src_install() {
+	exeinto /etc/ppp
+	for i in ip-up ip-down ; do
+		doexe "scripts/${i}"
+		insinto /etc/ppp/${i}.d
+		dosym ${i} /etc/ppp/${i/ip/ipv6}
+		doins "scripts/${i}.d"/*
+	done
+}