diff options
author | David Michael <fedora.dm0@gmail.com> | 2021-06-12 14:35:50 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2021-06-12 14:45:46 -0400 |
commit | 6cc4ef67b5af5c1e809bb6846ea0d619a350fa69 (patch) | |
tree | cee5e48e515174827f62ad5a41a06844e54c5e40 /net-dialup/ppp-scripts | |
parent | net-misc/iputils: move gettext to BDEPEND (diff) | |
download | gentoo-6cc4ef67b5af5c1e809bb6846ea0d619a350fa69.tar.gz gentoo-6cc4ef67b5af5c1e809bb6846ea0d619a350fa69.tar.bz2 gentoo-6cc4ef67b5af5c1e809bb6846ea0d619a350fa69.zip |
net-dialup/ppp-scripts: EAPI 7
Closes: https://bugs.gentoo.org/795657
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: David Michael <fedora.dm0@gmail.com>
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'net-dialup/ppp-scripts')
-rw-r--r-- | net-dialup/ppp-scripts/ppp-scripts-0.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-dialup/ppp-scripts/ppp-scripts-0.ebuild b/net-dialup/ppp-scripts/ppp-scripts-0.ebuild index 9299c2d744b8..5cfe76c23ab5 100644 --- a/net-dialup/ppp-scripts/ppp-scripts-0.ebuild +++ b/net-dialup/ppp-scripts/ppp-scripts-0.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 DESCRIPTION="Common set of scripts for various PPP implementations" HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" @@ -20,8 +20,8 @@ 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} + insinto /etc/ppp/${i}.d doins "scripts/${i}.d"/* done } |