blob: bc5f0eb0a316efc4a72969cff923a77fdb369070 (
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
48
49
50
51
52
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/pptpclient-1.7.1-r1.ebuild,v 1.1 2007/03/18 07:39:17 mrness Exp $
inherit eutils
MY_P=${P/client}
MY_CMD=pptp-command-20050401
DESCRIPTION="Linux client for PPTP"
HOMEPAGE="http://pptpclient.sourceforge.net/"
SRC_URI="mirror://sourceforge/pptpclient/${MY_P}.tar.gz
mirror://gentoo/${MY_CMD}.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ppc ppc64 x86"
IUSE="tk"
DEPEND=">=net-dialup/ppp-2.4.2
dev-lang/perl
tk? ( dev-perl/perl-tk )"
RESTRICT="test" #make test is useless and vector_test.c is broken
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-process-name.patch
}
src_compile() {
emake OPTIMISE= DEBUG= CFLAGS="${CFLAGS}" || die "make failed"
}
src_install() {
dosbin pptp
dodoc AUTHORS 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.
insinto /etc/ppp
doins options.pptp
newsbin "${WORKDIR}/${MY_CMD}" pptp-command
dosbin "${FILESDIR}/pptp_fe.pl"
use tk && dosbin "${FILESDIR}/xpptp_fe.pl"
}
|