Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/tinc: tinc-1.0.20.ebuild ChangeLog
Date: Tue, 05 Mar 2013 02:34:24
Message-Id: 20130305023420.ADB712171E@flycatcher.gentoo.org
1 blueness 13/03/05 02:34:20
2
3 Modified: ChangeLog
4 Added: tinc-1.0.20.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.38 net-misc/tinc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?rev=1.38&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?rev=1.38&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/ChangeLog?r1=1.37&r2=1.38
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v
20 retrieving revision 1.37
21 retrieving revision 1.38
22 diff -u -r1.37 -r1.38
23 --- ChangeLog 26 Jun 2012 13:59:16 -0000 1.37
24 +++ ChangeLog 5 Mar 2013 02:34:20 -0000 1.38
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-misc/tinc
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.37 2012/06/26 13:59:16 blueness Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/ChangeLog,v 1.38 2013/03/05 02:34:20 blueness Exp $
31 +
32 +*tinc-1.0.20 (05 Mar 2013)
33 +
34 + 05 Mar 2013; Anthony G. Basile <blueness@g.o> +tinc-1.0.20.ebuild:
35 + Version bump
36
37 26 Jun 2012; Anthony G. Basile <blueness@g.o> -tinc-1.0.16-r4.ebuild,
38 -tinc-1.0.17.ebuild, -files/fix-compile-vde-uml.patch,
39
40
41
42 1.1 net-misc/tinc/tinc-1.0.20.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/tinc-1.0.20.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/tinc/tinc-1.0.20.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tinc-1.0.20.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.20.ebuild,v 1.1 2013/03/05 02:34:20 blueness Exp $
52
53 EAPI="5"
54
55 DESCRIPTION="tinc is an easy to configure VPN implementation"
56 HOMEPAGE="http://www.tinc-vpn.org/"
57 SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
62 IUSE="+lzo uml vde +zlib"
63
64 DEPEND=">=dev-libs/openssl-0.9.7
65 lzo? ( dev-libs/lzo:2 )
66 zlib? ( >=sys-libs/zlib-1.1.4 )"
67 RDEPEND="${DEPEND}
68 vde? ( net-misc/vde )"
69
70 src_configure() {
71 econf \
72 --enable-jumbograms \
73 --disable-tunemu \
74 $(use_enable lzo) \
75 $(use_enable uml) \
76 $(use_enable vde) \
77 $(use_enable zlib)
78 }
79
80 src_install() {
81 emake DESTDIR="${D}" install
82 dodir /etc/tinc
83 dodoc AUTHORS NEWS README THANKS
84 newinitd "${FILESDIR}"/tincd.1 tincd
85 newinitd "${FILESDIR}"/tincd.lo.1 tincd.lo
86 doconfd "${FILESDIR}"/tinc.networks
87 newconfd "${FILESDIR}"/tincd.conf.1 tincd
88 }
89
90 pkg_postinst() {
91 elog "This package requires the tun/tap kernel device."
92 elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
93 }