Gentoo Archives: gentoo-commits

From: Michael Sterrett <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/enet/
Date: Sun, 03 Jan 2016 15:16:46
Message-Id: 1451834034.4fbb75c002aebdf23915c9f9580b9271c39442c2.mr_bones_@gentoo
1 commit: 4fbb75c002aebdf23915c9f9580b9271c39442c2
2 Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 3 15:13:54 2016 +0000
4 Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 3 15:13:54 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fbb75c0
7
8 net-libs/enet: inherit eutils instead of base
9
10 Package-Manager: portage-2.2.24
11
12 net-libs/enet/enet-1.3.13.ebuild | 15 ++++-----------
13 1 file changed, 4 insertions(+), 11 deletions(-)
14
15 diff --git a/net-libs/enet/enet-1.3.13.ebuild b/net-libs/enet/enet-1.3.13.ebuild
16 index ff7aaaa..83588c5 100644
17 --- a/net-libs/enet/enet-1.3.13.ebuild
18 +++ b/net-libs/enet/enet-1.3.13.ebuild
19 @@ -3,8 +3,7 @@
20 # $Id$
21
22 EAPI=5
23 -
24 -inherit base
25 +inherit eutils
26
27 DESCRIPTION="relatively thin, simple and robust network communication layer on top of UDP"
28 HOMEPAGE="http://enet.bespin.org/"
29 @@ -17,17 +16,11 @@ IUSE="static-libs"
30
31 RDEPEND="!${CATEGORY}/${PN}:0"
32
33 -DOCS=( "ChangeLog" "README" )
34 -
35 src_configure() {
36 - econf \
37 - --disable-dependency-tracking \
38 - $(use_enable static-libs static)
39 + econf $(use_enable static-libs static)
40 }
41
42 src_install() {
43 - base_src_install
44 - if ! use static-libs ; then
45 - find "${D}" -type f -name '*.la' -exec rm {} + || die
46 - fi
47 + default
48 + prune_libtool_files
49 }