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