net-libs/enet: inherit eutils instead of base
authorMichael Sterrett <mr_bones_@gentoo.org>
Sun, 3 Jan 2016 15:13:54 +0000 (10:13 -0500)
committerMichael Sterrett <mr_bones_@gentoo.org>
Sun, 3 Jan 2016 15:13:54 +0000 (10:13 -0500)
Package-Manager: portage-2.2.24

net-libs/enet/enet-1.3.13.ebuild

index ff7aaaa1a2d79046fe63a983e56050f6d65af83f..83588c5fb1eddb09863629c6098c15fba19dfb63 100644 (file)
@@ -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
 }