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