Gentoo Archives: gentoo-commits

From: "Alin Nastac (mrness)" <mrness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/pptpclient: pptpclient-1.7.2.ebuild ChangeLog
Date: Sat, 20 Jun 2009 09:00:52
Message-Id: E1MHwRN-0002eN-Ih@stork.gentoo.org
1 mrness 09/06/20 09:00:49
2
3 Modified: ChangeLog
4 Added: pptpclient-1.7.2.ebuild
5 Log:
6 Version bump (#270657).
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.49 net-dialup/pptpclient/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/pptpclient/ChangeLog?rev=1.49&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/pptpclient/ChangeLog?rev=1.49&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/pptpclient/ChangeLog?r1=1.48&r2=1.49
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/ChangeLog,v
19 retrieving revision 1.48
20 retrieving revision 1.49
21 diff -u -r1.48 -r1.49
22 --- ChangeLog 15 Apr 2007 09:57:54 -0000 1.48
23 +++ ChangeLog 20 Jun 2009 09:00:49 -0000 1.49
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-dialup/pptpclient
26 -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/ChangeLog,v 1.48 2007/04/15 09:57:54 mrness Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/ChangeLog,v 1.49 2009/06/20 09:00:49 mrness Exp $
30 +
31 +*pptpclient-1.7.2 (20 Jun 2009)
32 +
33 + 20 Jun 2009; Alin Năstac <mrness@g.o>
34 + +files/pptpclient-1.7.2-process-name.patch, +pptpclient-1.7.2.ebuild:
35 + Version bump (#270657).
36
37 15 Apr 2007; Alin Năstac <mrness@g.o> -pptpclient-1.7.1.ebuild:
38 Remove old revision.
39
40
41
42 1.1 net-dialup/pptpclient/pptpclient-1.7.2.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/pptpclient/pptpclient-1.7.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dialup/pptpclient/pptpclient-1.7.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pptpclient-1.7.2.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-dialup/pptpclient/pptpclient-1.7.2.ebuild,v 1.1 2009/06/20 09:00:49 mrness Exp $
52
53 EAPI="2"
54
55 inherit eutils
56
57 MY_P=${P/client}
58 MY_CMD=pptp-command-20050401
59
60 DESCRIPTION="Linux client for PPTP"
61 HOMEPAGE="http://pptpclient.sourceforge.net/"
62 SRC_URI="mirror://sourceforge/pptpclient/${MY_P}.tar.gz
63 mirror://gentoo/${MY_CMD}.gz"
64
65 SLOT="0"
66 LICENSE="GPL-2"
67 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86"
68 IUSE="tk"
69
70 DEPEND=">=net-dialup/ppp-2.4.2
71 dev-lang/perl
72 tk? ( dev-perl/perl-tk )"
73 RDEPEND="${DEPEND}"
74
75 RESTRICT="test" #make test is useless and vector_test.c is broken
76
77 S="${WORKDIR}/${MY_P}"
78
79 src_prepare() {
80 epatch "${FILESDIR}"/${P}-process-name.patch
81 }
82
83 src_compile() {
84 emake OPTIMISE= DEBUG= CFLAGS="${CFLAGS}" || die "make failed"
85 }
86
87 src_install() {
88 dosbin pptp
89 dodoc AUTHORS ChangeLog DEVELOPERS NEWS README TODO USING
90 dodoc Documentation/*
91 dodir /etc/pptp.d
92
93 # The current version of pptp-linux doesn't include the
94 # RH-specific portions, so include them ourselves.
95 insinto /etc/ppp
96 doins options.pptp
97 newsbin "${WORKDIR}/${MY_CMD}" pptp-command
98 dosbin "${FILESDIR}/pptp_fe.pl"
99 use tk && dosbin "${FILESDIR}/xpptp_fe.pl"
100 }