Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/pppconfig/
Date: Wed, 04 May 2016 21:57:03
Message-Id: 1462399003.bd139078c638176d72afc534dfad5b5fd9cd542d.mrueg@gentoo
1 commit: bd139078c638176d72afc534dfad5b5fd9cd542d
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 4 21:56:23 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 21:56:43 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd139078
7
8 net-dialup/pppconfig: Remove old
9
10 Package-Manager: portage-2.2.28
11
12 net-dialup/pppconfig/Manifest | 1 -
13 net-dialup/pppconfig/pppconfig-2.3.17-r1.ebuild | 56 -------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/net-dialup/pppconfig/Manifest b/net-dialup/pppconfig/Manifest
17 index bd1257f..91a7162 100644
18 --- a/net-dialup/pppconfig/Manifest
19 +++ b/net-dialup/pppconfig/Manifest
20 @@ -1,2 +1 @@
21 -DIST pppconfig_2.3.17.tar.gz 377665 SHA256 8c9d6598c6f353d1bfbccc48be06f63d6c5111fa11e6734ce2120a085ca93585 SHA512 9761242fa255afeccf4caf9a31fc57e49c5b2db43a4c8a5e228de2d6bc48f6458acfdf4c77005445a44fb71dda33f12e388cbfed9fcd00e0fa6bf8f03fa8a523 WHIRLPOOL c7b50acdc7d645576fba4ef426cb1ef3ee33bd8b17e8756158f738da5e885826986b00b09d45af88f22fed4978db8141aeefb9f0a245d65f62c1c21ff333243b
22 DIST pppconfig_2.3.21.tar.gz 397243 SHA256 cc8bd046aa8c9495b589ec87d5051a237ba89d0dcb7b1924a50a72dfac6f20f8 SHA512 e6297a6834eb806d591aee44343c6e64536e260ea8e637f3a4d4b5a752e26ae90d467ca12dd83022e071f7c2c4f111660418a6b953c4a02f5618fc54a89c2893 WHIRLPOOL d02d0c1da782ede453633086497d51cf8ae456601694e782337b39cc33efad88f57cf4dee7df15020a40144dbd9f2d384fb4801d2b182ddb131f93ecef3a0e19
23
24 diff --git a/net-dialup/pppconfig/pppconfig-2.3.17-r1.ebuild b/net-dialup/pppconfig/pppconfig-2.3.17-r1.ebuild
25 deleted file mode 100644
26 index 7ff4345..0000000
27 --- a/net-dialup/pppconfig/pppconfig-2.3.17-r1.ebuild
28 +++ /dev/null
29 @@ -1,56 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -DESCRIPTION="A text menu based utility for configuring ppp"
35 -HOMEPAGE="http://packages.qa.debian.org/p/pppconfig.html"
36 -SRC_URI="mirror://debian/pool/main/p/${PN}/${P/-/_}.tar.gz"
37 -
38 -SLOT="0"
39 -LICENSE="GPL-2"
40 -KEYWORDS="amd64 ppc x86"
41 -IUSE="nls"
42 -
43 -RDEPEND="net-dialup/ppp
44 - dev-util/dialog
45 - dev-lang/perl"
46 -DEPEND="nls? ( sys-devel/gettext )"
47 -
48 -# Supported languages and translated documentation
49 -# Be sure all languages are prefixed with a single space!
50 -MY_AVAILABLE_LINGUAS=" ca cs da de el es eu fi fr gl he id it ja ko lt nb nl nn pt_BR pt ro ru sk sv tl tr vi zh_CN zh_TW"
51 -IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
52 -
53 -src_install () {
54 - dodir /etc/chatscripts /etc/ppp/resolv
55 - dosbin 0dns-down 0dns-up dns-clean
56 - newsbin pppconfig pppconfig.real
57 - dosbin "${FILESDIR}/pppconfig"
58 - doman man/pppconfig.8
59 - dodoc debian/{copyright,changelog}
60 -
61 - if use nls; then
62 - cd "${S}/po"
63 - local MY_LINGUAS="" lang
64 -
65 - for lang in ${MY_AVAILABLE_LINGUAS} ; do
66 - if use linguas_${lang} ; then
67 - MY_LINGUAS="${MY_LINGUAS} ${lang}"
68 - fi
69 - done
70 - if [[ -z "${MY_LINGUAS}" ]] ; then
71 - #If no language is selected, install 'em all
72 - MY_LINGUAS="${MY_AVAILABLE_LINGUAS}"
73 - fi
74 -
75 - einfo "Locale messages will be installed for following languages:"
76 - einfo " ${MY_LINGUAS}"
77 -
78 - for lang in ${MY_LINGUAS}; do
79 - msgfmt -o ${lang}.mo ${lang}.po && \
80 - insinto /usr/share/locale/${lang}/LC_MESSAGES && \
81 - newins ${lang}.mo pppconfig.mo || \
82 - die "failed to install locale messages for ${lang} language"
83 - done
84 - fi
85 -}