From: Michael Sterrett Date: Sun, 3 Jan 2016 15:13:54 +0000 (-0500) Subject: net-libs/enet: inherit eutils instead of base X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=4fbb75c002aebdf23915c9f9580b9271c39442c2;p=gentoo.git net-libs/enet: inherit eutils instead of base Package-Manager: portage-2.2.24 --- diff --git a/net-libs/enet/enet-1.3.13.ebuild b/net-libs/enet/enet-1.3.13.ebuild index ff7aaaa1a2d7..83588c5fb1ed 100644 --- a/net-libs/enet/enet-1.3.13.ebuild +++ b/net-libs/enet/enet-1.3.13.ebuild @@ -3,8 +3,7 @@ # $Id$ EAPI=5 - -inherit base +inherit eutils DESCRIPTION="relatively thin, simple and robust network communication layer on top of UDP" HOMEPAGE="http://enet.bespin.org/" @@ -17,17 +16,11 @@ IUSE="static-libs" RDEPEND="!${CATEGORY}/${PN}:0" -DOCS=( "ChangeLog" "README" ) - src_configure() { - econf \ - --disable-dependency-tracking \ - $(use_enable static-libs static) + econf $(use_enable static-libs static) } src_install() { - base_src_install - if ! use static-libs ; then - find "${D}" -type f -name '*.la' -exec rm {} + || die - fi + default + prune_libtool_files }