diff options
author | Bart Verwilst <verwilst@gentoo.org> | 2002-07-02 16:31:59 +0000 |
---|---|---|
committer | Bart Verwilst <verwilst@gentoo.org> | 2002-07-02 16:31:59 +0000 |
commit | 49e0a6d23f1cb146d4f1c2286089587dc26c4b15 (patch) | |
tree | 217931c755a55a64ecaf1e7b413ed517a7c7bd24 /net-dialup/pptpclient | |
parent | Added dev-perl/Time-HiRes dep. (diff) | |
download | historical-49e0a6d23f1cb146d4f1c2286089587dc26c4b15.tar.gz historical-49e0a6d23f1cb146d4f1c2286089587dc26c4b15.tar.bz2 historical-49e0a6d23f1cb146d4f1c2286089587dc26c4b15.zip |
initial ebuild
Diffstat (limited to 'net-dialup/pptpclient')
-rw-r--r-- | net-dialup/pptpclient/ChangeLog | 9 | ||||
-rw-r--r-- | net-dialup/pptpclient/files/digest-pptpclient-1.1.0 | 1 | ||||
-rw-r--r-- | net-dialup/pptpclient/pptpclient-1.1.0.ebuild | 33 |
3 files changed, 43 insertions, 0 deletions
diff --git a/net-dialup/pptpclient/ChangeLog b/net-dialup/pptpclient/ChangeLog new file mode 100644 index 000000000000..52d7672af648 --- /dev/null +++ b/net-dialup/pptpclient/ChangeLog @@ -0,0 +1,9 @@ +# 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.1 2002/07/02 16:31:59 verwilst Exp $ + +*pptpclient-1.1.0 (2 July 2002) + + 2 July 2002; Bart Verwilst <verwilst@gentoo.org> : + + Initial ebuild diff --git a/net-dialup/pptpclient/files/digest-pptpclient-1.1.0 b/net-dialup/pptpclient/files/digest-pptpclient-1.1.0 new file mode 100644 index 000000000000..f9a5222ecb56 --- /dev/null +++ b/net-dialup/pptpclient/files/digest-pptpclient-1.1.0 @@ -0,0 +1 @@ +MD5 03e340eb0a9118a8de94eef21560d6c9 pptp-linux-1.1.0-1.tar.gz 220286 diff --git a/net-dialup/pptpclient/pptpclient-1.1.0.ebuild b/net-dialup/pptpclient/pptpclient-1.1.0.ebuild new file mode 100644 index 000000000000..5f27b77dd23c --- /dev/null +++ b/net-dialup/pptpclient/pptpclient-1.1.0.ebuild @@ -0,0 +1,33 @@ +S=${WORKDIR}/pptp-linux-${PV}-1 +DESCRIPTION="Linux client for the proprietary Microsoft Point-to-Point Tunneling Protocol, PPTP. Allows connection to a PPTP based VPN +as used by employers and some cable and ADSL service providers." + +HOMEPAGE="http://pptpclient.sourceforge.net" +SRC_URI="mirror://sourceforge/pptpclient/pptp-linux-${PV}-1.tar.gz" + +DEPEND="net-dialup/ppp" + +RDEPEND="net-dialup/ppp" + +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 xpptp_fe.pl + + cd pptp-linux-${PV} + dosbin pptp + + dodoc AUTHORS COPYING ChangeLog DEVELOPERS NEWS README TODO USING + dodoc Documentation/* + dodoc Reference/* +} + |