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/xl2tpd: ChangeLog xl2tpd-1.2.7.ebuild
Date: Sat, 27 Nov 2010 11:02:00
Message-Id: 20101127110136.79E7020054@flycatcher.gentoo.org
1 mrness 10/11/27 11:01:36
2
3 Modified: ChangeLog
4 Added: xl2tpd-1.2.7.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.22 net-dialup/xl2tpd/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/xl2tpd/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/xl2tpd/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/xl2tpd/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dialup/xl2tpd/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 19 Sep 2010 11:31:22 -0000 1.21
23 +++ ChangeLog 27 Nov 2010 11:01:36 -0000 1.22
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-dialup/xl2tpd
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/xl2tpd/ChangeLog,v 1.21 2010/09/19 11:31:22 mrness Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/xl2tpd/ChangeLog,v 1.22 2010/11/27 11:01:36 mrness Exp $
29 +
30 +*xl2tpd-1.2.7 (27 Nov 2010)
31 +
32 + 27 Nov 2010; Alin Năstac <mrness@g.o> +xl2tpd-1.2.7.ebuild,
33 + +files/xl2tpd-1.2.7-as-needed.patch, +files/xl2tpd-1.2.7-qa-fixes.patch:
34 + Version bump.
35
36 *xl2tpd-1.2.6-r1 (19 Sep 2010)
37
38
39
40
41 1.1 net-dialup/xl2tpd/xl2tpd-1.2.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/xl2tpd/xl2tpd-1.2.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/xl2tpd/xl2tpd-1.2.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xl2tpd-1.2.7.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-dialup/xl2tpd/xl2tpd-1.2.7.ebuild,v 1.1 2010/11/27 11:01:36 mrness Exp $
51
52 EAPI="2"
53
54 inherit eutils
55
56 DESCRIPTION="A modern version of the Layer 2 Tunneling Protocol (L2TP) daemon"
57 HOMEPAGE="http://www.xelerance.com/software/"
58 SRC_URI="ftp://ftp.xelerance.com/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE="dnsretry"
64
65 DEPEND="net-libs/libpcap"
66 RDEPEND="${DEPEND}
67 net-dialup/ppp"
68
69 src_prepare() {
70 epatch "${FILESDIR}"/${P}-as-needed.patch
71 epatch "${FILESDIR}"/${P}-qa-fixes.patch
72 use dnsretry && epatch "${FILESDIR}"/${PN}-dnsretry.patch
73 }
74
75 src_install() {
76 emake PREFIX=/usr DESTDIR="${D}" install || die "emake install failed"
77
78 dodoc CREDITS README.xl2tpd \
79 doc/README.patents doc/rfc2661.txt doc/*.sample
80
81 dodir /etc/xl2tpd
82 head -n 2 doc/l2tp-secrets.sample > "${D}/etc/xl2tpd/l2tp-secrets"
83 fperms 0600 /etc/xl2tpd/l2tp-secrets
84 newinitd "${FILESDIR}"/xl2tpd-init xl2tpd
85
86 keepdir /var/run/xl2tpd
87 }