Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-proxy/tayga/
Date: Sat, 30 Dec 2017 16:53:07
Message-Id: 1514652761.2657bad9087b5fc107e72e34f08ebf68f808bd58.zlogene@gentoo
1 commit: 2657bad9087b5fc107e72e34f08ebf68f808bd58
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 30 16:51:36 2017 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 30 16:52:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2657bad9
7
8 net-proxy/tayga: revbump: EAPI=6
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 net-proxy/tayga/tayga-0.9.2-r1.ebuild | 25 +++++++++++++++++++++++++
13 1 file changed, 25 insertions(+)
14
15 diff --git a/net-proxy/tayga/tayga-0.9.2-r1.ebuild b/net-proxy/tayga/tayga-0.9.2-r1.ebuild
16 new file mode 100644
17 index 00000000000..09f91c9a57d
18 --- /dev/null
19 +++ b/net-proxy/tayga/tayga-0.9.2-r1.ebuild
20 @@ -0,0 +1,25 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI="6"
25 +
26 +inherit autotools
27 +
28 +DESCRIPTION="out-of-kernel stateless NAT64 implementation based on TUN"
29 +HOMEPAGE="http://www.litech.org/tayga/"
30 +SRC_URI="http://www.litech.org/${PN}/${P}.tar.bz2"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64"
35 +IUSE=""
36 +
37 +DEPEND=""
38 +RDEPEND="${DEPEND}"
39 +
40 +src_prepare() {
41 + default
42 + sed -e '/^CFLAGS/d' \
43 + -i configure.ac || die "sed failed"
44 + eautoreconf
45 +}