diff options
author | Jared H.Hudson <jhhudso@gentoo.org> | 2003-08-26 15:28:13 +0000 |
---|---|---|
committer | Jared H.Hudson <jhhudso@gentoo.org> | 2003-08-26 15:28:13 +0000 |
commit | b9286b90b902c32e4253ad47060a93897922b71f (patch) | |
tree | d1b9f5d1393f9bb22fc2829629e8f5444195201a /net-dialup/pptpclient | |
parent | Version bump. (diff) | |
download | historical-b9286b90b902c32e4253ad47060a93897922b71f.tar.gz historical-b9286b90b902c32e4253ad47060a93897922b71f.tar.bz2 historical-b9286b90b902c32e4253ad47060a93897922b71f.zip |
Version bump.
Diffstat (limited to 'net-dialup/pptpclient')
-rw-r--r-- | net-dialup/pptpclient/Manifest | 4 | ||||
-rw-r--r-- | net-dialup/pptpclient/files/digest-pptpclient-1.3.1 | 1 | ||||
-rw-r--r-- | net-dialup/pptpclient/pptpclient-1.3.1.ebuild | 39 |
3 files changed, 42 insertions, 2 deletions
diff --git a/net-dialup/pptpclient/Manifest b/net-dialup/pptpclient/Manifest index 2ea60b4e34e8..3ff569a989fb 100644 --- a/net-dialup/pptpclient/Manifest +++ b/net-dialup/pptpclient/Manifest @@ -1,8 +1,8 @@ -MD5 0a5babf6fe4dc66d402c90d9c27eb931 ChangeLog 1318 +MD5 a491a4d857171fc7d4015658fa39c5ed ChangeLog 1419 MD5 f19bfa508b36854ba0e6c6e06efd491f pptpclient-1.1.0-r1.ebuild 1073 MD5 8730b42f940be3e348e8a354a36271c6 pptpclient-1.1.0.ebuild 871 MD5 38aadef62c187ff761df1c72ed661b90 pptpclient-1.2.0.ebuild 997 -MD5 38aadef62c187ff761df1c72ed661b90 pptpclient-1.3.1.ebuild 997 +MD5 b99c10b977285f75f374d605b72e5103 pptpclient-1.3.1.ebuild 1015 MD5 ddba6ac5fde52ccc46d17bc1f5822a39 files/digest-pptpclient-1.1.0 70 MD5 ddba6ac5fde52ccc46d17bc1f5822a39 files/digest-pptpclient-1.1.0-r1 70 MD5 87d3d997b8edfa7e7590b71edc635168 files/digest-pptpclient-1.2.0 68 diff --git a/net-dialup/pptpclient/files/digest-pptpclient-1.3.1 b/net-dialup/pptpclient/files/digest-pptpclient-1.3.1 new file mode 100644 index 000000000000..ba48ccde756b --- /dev/null +++ b/net-dialup/pptpclient/files/digest-pptpclient-1.3.1 @@ -0,0 +1 @@ +MD5 b24ca05422c0e62d7a26edbbec604a89 pptp-linux-1.3.1.tar.gz 215987 diff --git a/net-dialup/pptpclient/pptpclient-1.3.1.ebuild b/net-dialup/pptpclient/pptpclient-1.3.1.ebuild new file mode 100644 index 000000000000..b68c2e5d39cb --- /dev/null +++ b/net-dialup/pptpclient/pptpclient-1.3.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/pptpclient-1.3.1.ebuild,v 1.1 2003/08/26 15:27:26 jhhudso Exp $ + +MY_P=pptp-linux-${PV} +S=${WORKDIR}/${MY_P} +DESCRIPTION="Linux client for PPTP" +HOMEPAGE="http://pptpclient.sourceforge.net/" +SRC_URI="mirror://sourceforge/pptpclient/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ~ppc amd64 alpha" +IUSE="tcltk" + +DEPEND="net-dialup/ppp + dev-lang/perl + tcltk? ( dev-perl/perl-tk )" +RDEPEND="$DEPEND" + +src_compile() { + make || die "make failed" +} + +src_install() { + dosbin pptp + dodoc AUTHORS COPYING ChangeLog DEVELOPERS NEWS README TODO USING + dodoc Documentation/* + dodoc Reference/* + dodir /etc/pptp.d + + # The current version of pptp-linux doesn't include the + # RH-specific portions, so include them ourselves. + cd ${FILESDIR} + insinto /etc/ppp + doins options.pptp + dosbin pptp-command pptp_fe.pl + use tcltk && dosbin xpptp_fe.pl +} |