Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
Date: Sun, 09 Oct 2016 16:15:32
Message-Id: 1476029715.5106312b082927183e0eb3b081ff70aab48f84e9.blueness@gentoo
1 commit: 5106312b082927183e0eb3b081ff70aab48f84e9
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 9 14:57:43 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 9 16:15:15 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5106312b
7
8 net-misc/tinc: version bump to 1.0.29
9
10 Package-Manager: portage-2.2.28
11
12 net-misc/tinc/Manifest | 1 +
13 net-misc/tinc/tinc-1.0.29.ebuild | 48 ++++++++++++++++++++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
17 index e087669..893b77c 100644
18 --- a/net-misc/tinc/Manifest
19 +++ b/net-misc/tinc/Manifest
20 @@ -1,2 +1,3 @@
21 DIST tinc-1.0.28.tar.gz 488837 SHA256 0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec WHIRLPOOL 9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
22 +DIST tinc-1.0.29.tar.gz 493335 SHA256 0357017c6ffbbe1b2088c28fa684d2b119afa1086f363c503d06e8f6faa72a78 SHA512 230f3ff4c86d9ebed6e350f3ec92e931d83f94e6b9c4821bec745dddc2d33997e776bf3cd2a8b9e261b2f0b2df2ed8b5406bfa40bae08696304f650de9f34ef3 WHIRLPOOL 9825337a4622bd9461c027767e701b3934ef422beb10a06b801e005549b7b2ff944d4609591667efc994d14b002db937658209a8eb9f363a868373ebfdd0603e
23 DIST tinc-1.1pre14.tar.gz 696109 SHA256 e349e78f0e0d10899b8ab51c285bdb96c5ee322e847dfcf6ac9e21036286221f SHA512 dfc54a91fd40826b108e9cbae43da42462eb51bb7ad16ac040cb1b262b5510eb6884b1f1dbe0541a3b1631213f70cc678593d1ba51ebdf150c3f6968030b9291 WHIRLPOOL 63c8229c667e461ad20c118d233a2abfe598cc95698b8c83e5f8b598657ca298ea0cdc20432ab2d084fd4a06129a5884e91eb445f4c7204be3798d1fb4dec2f8
24
25 diff --git a/net-misc/tinc/tinc-1.0.29.ebuild b/net-misc/tinc/tinc-1.0.29.ebuild
26 new file mode 100644
27 index 00000000..19f1e15
28 --- /dev/null
29 +++ b/net-misc/tinc/tinc-1.0.29.ebuild
30 @@ -0,0 +1,48 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI="6"
36 +inherit systemd
37 +
38 +DESCRIPTION="tinc is an easy to configure VPN implementation"
39 +HOMEPAGE="http://www.tinc-vpn.org/"
40 +SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
45 +IUSE="libressl +lzo uml vde +zlib"
46 +
47 +DEPEND="
48 + !libressl? ( dev-libs/openssl:0= )
49 + libressl? ( dev-libs/libressl:0= )
50 + lzo? ( dev-libs/lzo:2 )
51 + zlib? ( sys-libs/zlib )"
52 +RDEPEND="${DEPEND}
53 + vde? ( net-misc/vde )"
54 +
55 +src_configure() {
56 + econf \
57 + --enable-jumbograms \
58 + --disable-tunemu \
59 + $(use_enable lzo) \
60 + $(use_enable uml) \
61 + $(use_enable vde) \
62 + $(use_enable zlib)
63 +}
64 +
65 +src_install() {
66 + emake DESTDIR="${D}" install
67 + dodir /etc/tinc
68 + dodoc AUTHORS NEWS README THANKS
69 + doconfd "${FILESDIR}"/tinc.networks
70 + newconfd "${FILESDIR}"/tincd.conf tincd
71 + newinitd "${FILESDIR}"/tincd-r1 tincd
72 + systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
73 +}
74 +
75 +pkg_postinst() {
76 + elog "This package requires the tun/tap kernel device."
77 + elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
78 +}