summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2007-11-12 15:19:11 +0000
committerAlin Năstac <mrness@gentoo.org>2007-11-12 15:19:11 +0000
commit10bdd174c98df3e641af6e1546652761ddfeed0c (patch)
tree3645d25e8f17020f8628c35f7872b0cf0d96549c /net-dialup/pppconfig
parentversion bump (diff)
downloadgentoo-2-10bdd174c98df3e641af6e1546652761ddfeed0c.tar.gz
gentoo-2-10bdd174c98df3e641af6e1546652761ddfeed0c.tar.bz2
gentoo-2-10bdd174c98df3e641af6e1546652761ddfeed0c.zip
'Remove old version.'
(Portage version: 2.1.3.16)
Diffstat (limited to 'net-dialup/pppconfig')
-rw-r--r--net-dialup/pppconfig/ChangeLog5
-rw-r--r--net-dialup/pppconfig/files/digest-pppconfig-2.3.153
-rw-r--r--net-dialup/pppconfig/pppconfig-2.3.15.ebuild56
3 files changed, 4 insertions, 60 deletions
diff --git a/net-dialup/pppconfig/ChangeLog b/net-dialup/pppconfig/ChangeLog
index 9dcf919c310d..ae55813b2166 100644
--- a/net-dialup/pppconfig/ChangeLog
+++ b/net-dialup/pppconfig/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-dialup/pppconfig
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/pppconfig/ChangeLog,v 1.28 2007/09/09 05:44:27 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/pppconfig/ChangeLog,v 1.29 2007/11/12 15:19:10 mrness Exp $
+
+ 12 Nov 2007; Alin Năstac <mrness@gentoo.org> -pppconfig-2.3.15.ebuild:
+ Remove old version.
09 Sep 2007; Joseph Jezak <josejx@gentoo.org> pppconfig-2.3.17-r1.ebuild:
Marked ppc stable for bug #190185.
diff --git a/net-dialup/pppconfig/files/digest-pppconfig-2.3.15 b/net-dialup/pppconfig/files/digest-pppconfig-2.3.15
deleted file mode 100644
index 5e85c06915f4..000000000000
--- a/net-dialup/pppconfig/files/digest-pppconfig-2.3.15
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 2913ccd2114426fa87a8f1c6904590df pppconfig_2.3.15.tar.gz 380240
-RMD160 214e7b875cdb206656474a258d5501a9e00b4680 pppconfig_2.3.15.tar.gz 380240
-SHA256 efdc46bc97d2bccd1dccc7c38ce0bff938bac234d3e4b81ba14b80157ece0a61 pppconfig_2.3.15.tar.gz 380240
diff --git a/net-dialup/pppconfig/pppconfig-2.3.15.ebuild b/net-dialup/pppconfig/pppconfig-2.3.15.ebuild
deleted file mode 100644
index 6d84f84ffde9..000000000000
--- a/net-dialup/pppconfig/pppconfig-2.3.15.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/pppconfig/pppconfig-2.3.15.ebuild,v 1.4 2007/04/22 18:17:05 dertobi123 Exp $
-
-DESCRIPTION="A text menu based utility for configuring ppp."
-SRC_URI="http://http.us.debian.org/debian/pool/main/p/pppconfig/${PN}_${PV}.tar.gz"
-HOMEPAGE="http://http.us.debian.org/debian/pool/main/p/pppconfig/"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86"
-IUSE="nls"
-
-RDEPEND="net-dialup/ppp
- dev-util/dialog"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-# Supported languages and translated documentation
-# Be sure all languages are prefixed with a single space!
-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"
-IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
-
-src_install () {
- dodir /etc/chatscripts /etc/ppp/resolv
- dosbin 0dns-down 0dns-up dns-clean
- newsbin pppconfig pppconfig.real
- dosbin "${FILESDIR}/pppconfig"
- doman pppconfig.8
- dodoc debian/{copyright,changelog}
-
- if use nls; then
- cd "${S}/po"
- local MY_LINGUAS="" lang
-
- for lang in ${MY_AVAILABLE_LINGUAS} ; do
- if use linguas_${lang} ; then
- MY_LINGUAS="${MY_LINGUAS} ${lang}"
- fi
- done
- if [[ -z "${MY_LINGUAS}" ]] ; then
- #If no language is selected, install 'em all
- MY_LINGUAS="${MY_AVAILABLE_LINGUAS}"
- fi
-
- einfo "Locale messages will be installed for following languages:"
- einfo " ${MY_LINGUAS}"
-
- for lang in ${MY_LINGUAS}; do
- msgfmt -o ${lang}.mo ${lang}.po && \
- insinto /usr/share/locale/${lang}/LC_MESSAGES && \
- newins ${lang}.mo pppconfig.mo || \
- die "failed to install locale messages for ${lang} language"
- done
- fi
-}