blob: 787390821b139a2c6ddfd7d62c99d23f283e8fb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# 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.1.0-r1.ebuild,v 1.5 2003/07/18 21:03:47 tester 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
dev-lang/perl
tcltk? ( dev-perl/perl-tk )"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc amd64"
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/*
}
|