diff options
author | Jared H.Hudson <jhhudso@gentoo.org> | 2002-11-14 10:51:51 +0000 |
---|---|---|
committer | Jared H.Hudson <jhhudso@gentoo.org> | 2002-11-14 10:51:51 +0000 |
commit | 7cd42bb98c125f373e4edb035154fdbd7cc722df (patch) | |
tree | 2c67ca8d8bee5dc5719ba6c55737abf9158b8bf2 | |
parent | nls fix (diff) | |
download | historical-7cd42bb98c125f373e4edb035154fdbd7cc722df.tar.gz historical-7cd42bb98c125f373e4edb035154fdbd7cc722df.tar.bz2 historical-7cd42bb98c125f373e4edb035154fdbd7cc722df.zip |
Fix in regard to bug #6956
-rw-r--r-- | net-dialup/pptpclient/ChangeLog | 10 | ||||
-rw-r--r-- | net-dialup/pptpclient/files/digest-pptpclient-1.1.0-r1 | 1 | ||||
-rw-r--r-- | net-dialup/pptpclient/pptpclient-1.1.0-r1.ebuild | 47 |
3 files changed, 57 insertions, 1 deletions
diff --git a/net-dialup/pptpclient/ChangeLog b/net-dialup/pptpclient/ChangeLog index b97ae7b3853f..de7a77781d82 100644 --- a/net-dialup/pptpclient/ChangeLog +++ b/net-dialup/pptpclient/ChangeLog @@ -1,7 +1,15 @@ # ChangeLog for net-dialup/ppp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/ChangeLog,v 1.2 2002/10/23 21:28:01 cselkirk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/ChangeLog,v 1.3 2002/11/14 10:51:51 jhhudso Exp $ +*pptpclient-1.1.0-r1 (14 Nov 2002) + + 14 Nov 2002; Jared Hudson <jhhudso@gentoo.org> : Fixed bug #6956. xpptp_fe.pl + only installs now if tcltk is a use flag. Credit goes to Michael Sterrett + <michael.sterrett@coat.com> for the bug fix. Also, xpptp_fe.pl was modified + because it tried to run pptp_fe instead of pptp_fe.pl as the backend for its + frontend. + *pptpclient-1.1.0 (2 July 2002) 23 Oct 2002; Calum Selkirk <cselkirk@gentoo.org> pptpclient-1.1.0.ebuild : diff --git a/net-dialup/pptpclient/files/digest-pptpclient-1.1.0-r1 b/net-dialup/pptpclient/files/digest-pptpclient-1.1.0-r1 new file mode 100644 index 000000000000..f9a5222ecb56 --- /dev/null +++ b/net-dialup/pptpclient/files/digest-pptpclient-1.1.0-r1 @@ -0,0 +1 @@ +MD5 03e340eb0a9118a8de94eef21560d6c9 pptp-linux-1.1.0-1.tar.gz 220286 diff --git a/net-dialup/pptpclient/pptpclient-1.1.0-r1.ebuild b/net-dialup/pptpclient/pptpclient-1.1.0-r1.ebuild new file mode 100644 index 000000000000..84258b8d46e5 --- /dev/null +++ b/net-dialup/pptpclient/pptpclient-1.1.0-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/pptpclient-1.1.0-r1.ebuild,v 1.1 2002/11/14 10:51:51 jhhudso Exp $ + + +S=${WORKDIR}/pptp-linux-${PV}-1 +DESCRIPTION="Linux client for PPTP" +HOMEPAGE="http://pptpclient.sourceforge.net/" +SRC_URI="mirror://sourceforge/pptpclient/pptp-linux-${PV}-1.tar.gz" + +DEPEND="net-dialup/ppp + sys-devel/perl + tcltk? ( dev-perl/perl-tk )" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc" +IUSE="tcltk" + +src_compile() { + cd ${S} + tar zxf pptp-linux-${PV}.tar.gz + cd ${S}/pptp-linux-${PV} + + make || die "make failed" +} + +src_install() { + cd ${S} + insinto /etc/ppp + doins options.pptp + dosbin pptp-command pptp_fe.pl + + if [ -n "`use tcltk`" ] ; then + sed s/pptp_fe/pptp_fe.pl/g < xpptp_fe.pl > xpptp_fe.pl.new + mv xpptp_fe.pl.new xpptp_fe.pl + dosbin xpptp_fe.pl + fi + + cd pptp-linux-${PV} + dosbin pptp + + dodoc AUTHORS COPYING ChangeLog DEVELOPERS NEWS README TODO USING + dodoc Documentation/* + dodoc Reference/* +} + |