From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-852112-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 8D0841388C1
	for <garchives@archives.gentoo.org>; Fri, 18 Dec 2015 08:18:07 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 2102121C002;
	Fri, 18 Dec 2015 08:18:06 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id E806021C002
	for <gentoo-commits@lists.gentoo.org>; Fri, 18 Dec 2015 08:18:04 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id D9113340634
	for <gentoo-commits@lists.gentoo.org>; Fri, 18 Dec 2015 08:18:03 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id AF0CCCE6
	for <gentoo-commits@lists.gentoo.org>; Fri, 18 Dec 2015 08:17:59 +0000 (UTC)
From: "Michael Sterrett" <mr_bones_@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Michael Sterrett" <mr_bones_@gentoo.org>
Message-ID: <1450426647.81f45df63edf53aa496c08f66b933f39b298e954.mr_bones_@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ftgl/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-libs/ftgl/ftgl-2.1.3_rc5.ebuild
X-VCS-Directories: media-libs/ftgl/
X-VCS-Committer: mr_bones_
X-VCS-Committer-Name: Michael Sterrett
X-VCS-Revision: 81f45df63edf53aa496c08f66b933f39b298e954
X-VCS-Branch: master
Date: Fri, 18 Dec 2015 08:17:59 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: fc599c6d-e1be-4dd3-9890-c90102c29f79
X-Archives-Hash: c17fe450b261b87b306b78b38d2a5fdf

commit:     81f45df63edf53aa496c08f66b933f39b298e954
Author:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 18 08:04:55 2015 +0000
Commit:     Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
CommitDate: Fri Dec 18 08:17:27 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81f45df6

EAPI=5; minor tidying

Package-Manager: portage-2.2.24

 media-libs/ftgl/ftgl-2.1.3_rc5.ebuild | 22 +++++++++-------------
 1 file changed, 9 insertions(+), 13 deletions(-)

diff --git a/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild b/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild
index c34e22f..bcd6d71 100644
--- a/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild
+++ b/media-libs/ftgl/ftgl-2.1.3_rc5.ebuild
@@ -2,8 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=4
-
+EAPI=5
 inherit eutils flag-o-matic autotools
 
 MY_PV=${PV/_/-}
@@ -24,29 +23,26 @@ DEPEND=">=media-libs/freetype-2.0.9
 	virtual/opengl
 	virtual/glu
 	media-libs/freeglut"
-RDEPEND="${DEPEND}"
+RDEPEND=${DEPEND}
 
 S=${WORKDIR}/${MY_P2}
 
-DOCS="AUTHORS BUGS ChangeLog INSTALL NEWS README TODO docs/projects_using_ftgl.txt"
-
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-gentoo.patch \
+	epatch \
+		"${FILESDIR}"/${P}-gentoo.patch \
 		"${FILESDIR}"/${P}-underlink.patch
-#	AT_M4DIR=m4 eautoreconf
 	sed -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/" -i configure.ac || die
 	eautoreconf
 }
 
 src_configure() {
 	strip-flags # ftgl is sensitive - bug #112820
-	econf \
-		$(use_enable static-libs static)
+	econf $(use_enable static-libs static)
 }
 
 src_install() {
-	default
-	rm -rf "${D}"/usr/share/doc/ftgl
-
-	find "${ED}" -name '*.la' -exec rm -f {} +
+	DOCS="AUTHORS BUGS ChangeLog NEWS README TODO docs/projects_using_ftgl.txt" \
+		default
+	rm -rf "${D}"/usr/share/doc/ftgl || die
+	prune_libtool_files
 }