From 4fbb75c002aebdf23915c9f9580b9271c39442c2 Mon Sep 17 00:00:00 2001 From: Michael Sterrett Date: Sun, 3 Jan 2016 10:13:54 -0500 Subject: net-libs/enet: inherit eutils instead of base Package-Manager: portage-2.2.24 --- net-libs/enet/enet-1.3.13.ebuild | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'net-libs/enet') 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 } -- cgit v1.2.3-65-gdbad