summaryrefslogtreecommitdiff
path: root/net-dialup/pppconfig/pppconfig-2.3.21.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'net-dialup/pppconfig/pppconfig-2.3.21.ebuild')
-rw-r--r--net-dialup/pppconfig/pppconfig-2.3.21.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/net-dialup/pppconfig/pppconfig-2.3.21.ebuild b/net-dialup/pppconfig/pppconfig-2.3.21.ebuild
deleted file mode 100644
index b2560f286d53..000000000000
--- a/net-dialup/pppconfig/pppconfig-2.3.21.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit strip-linguas
-
-DESCRIPTION="A text menu based utility for configuring ppp"
-HOMEPAGE="https://packages.qa.debian.org/p/pppconfig.html"
-SRC_URI="mirror://debian/pool/main/p/${PN}/${P/-/_}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86"
-IUSE="nls"
-
-RDEPEND="
- net-dialup/ppp
- dev-util/dialog
- dev-lang/perl"
-BDEPEND="nls? ( sys-devel/gettext )"
-
-src_prepare() {
- default
-
- use nls && strip-linguas -i po/
-}
-
-src_compile() {
- default
-
- if use nls; then
- local lang
- for lang in ${LINGUAS}; do
- msgfmt -o po/${lang}.{m,p}o || die
- done
- fi
-}
-
-src_install() {
- dodir /etc/chatscripts /etc/ppp/resolv
- dosbin 0dns-down 0dns-up dns-clean
- newsbin pppconfig pppconfig.real
- dosbin "${FILESDIR}/pppconfig"
- doman man/pppconfig.8
- dodoc debian/{copyright,changelog}
-
- if use nls; then
- local lang
- for lang in ${LINGUAS}; do
- insinto /usr/share/locale/${lang}/LC_MESSAGES
- newins po/${lang}.mo pppconfig.mo
- done
- fi
-}