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-libs/enet/
Date: Sat, 30 Dec 2017 00:21:06
Message-Id: 1514593241.13eeb9e07d59c73c9d1482f9600a1d750be5bd0e.zlogene@gentoo
1 commit: 13eeb9e07d59c73c9d1482f9600a1d750be5bd0e
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 30 00:19:43 2017 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Dec 30 00:20:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13eeb9e0
7
8 net-libs/enet: revision bump: EAPI=6
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 net-libs/enet/enet-1.2.2-r1.ebuild | 19 +++++++++++++++++++
13 1 file changed, 19 insertions(+)
14
15 diff --git a/net-libs/enet/enet-1.2.2-r1.ebuild b/net-libs/enet/enet-1.2.2-r1.ebuild
16 new file mode 100644
17 index 00000000000..574384dac15
18 --- /dev/null
19 +++ b/net-libs/enet/enet-1.2.2-r1.ebuild
20 @@ -0,0 +1,19 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI="6"
25 +
26 +DESCRIPTION="relatively thin, simple and robust network communication layer on top of UDP"
27 +HOMEPAGE="http://enet.bespin.org/"
28 +SRC_URI="http://enet.bespin.org/download/${P}.tar.gz"
29 +
30 +LICENSE="MIT"
31 +SLOT="0"
32 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
33 +IUSE="static-libs"
34 +
35 +src_configure() {
36 + econf \
37 + --disable-dependency-tracking \
38 + $(use_enable static-libs static)
39 +}