summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-05-01 14:29:53 +0100
committerSam James <sam@gentoo.org>2023-05-01 14:29:53 +0100
commit6be24a6a6d24190bd1ffd43420f3a54531d4cfd7 (patch)
tree05a4bc85cb9eb9205329a77900edaa76b5d4b7e4 /net-dialup/pppconfig
parentnet-analyzer/traceroute: drop 2.1.0-r2 (diff)
downloadgentoo-6be24a6a6d24190bd1ffd43420f3a54531d4cfd7.tar.gz
gentoo-6be24a6a6d24190bd1ffd43420f3a54531d4cfd7.tar.bz2
gentoo-6be24a6a6d24190bd1ffd43420f3a54531d4cfd7.zip
net-dialup/pppconfig: drop 2.3.21
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-dialup/pppconfig')
-rw-r--r--net-dialup/pppconfig/Manifest1
-rw-r--r--net-dialup/pppconfig/pppconfig-2.3.21.ebuild55
2 files changed, 0 insertions, 56 deletions
diff --git a/net-dialup/pppconfig/Manifest b/net-dialup/pppconfig/Manifest
index d6b7dc18e928..84fb582da58e 100644
--- a/net-dialup/pppconfig/Manifest
+++ b/net-dialup/pppconfig/Manifest
@@ -1,2 +1 @@
-DIST pppconfig_2.3.21.tar.gz 397243 BLAKE2B 5816d9b1e832bd0e694718960ea45c0996fa7a459f3a38e03b0021d20549b81e5a74111c03f7f485bd4dbd408b2859864a69c55858cb0a4f70283971a64192bb SHA512 e6297a6834eb806d591aee44343c6e64536e260ea8e637f3a4d4b5a752e26ae90d467ca12dd83022e071f7c2c4f111660418a6b953c4a02f5618fc54a89c2893
DIST pppconfig_2.3.25.tar.gz 392316 BLAKE2B 7c30db92cff0c9e80e04e4e7a83ccc22e2c1380831fcbc1ebd36bc4d30044c0b32669546907318be3c43061d1ea9f44b0a471f56847e75b0470f18f1aa10bf7a SHA512 6874b93ae34edb2a0ba06a669d930f5023a3eae38b6d10a78179eb69990a8280d41ebc2049461b54b03bd19904d13d2ebb57997599ed650660d0b34c958ad977
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
-}