From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 40DCE138330 for ; Thu, 8 Sep 2016 18:20:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04BC8E0810; Thu, 8 Sep 2016 18:20:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 970B5E0810 for ; Thu, 8 Sep 2016 18:20:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC470340688 for ; Thu, 8 Sep 2016 18:20:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0453246E for ; Thu, 8 Sep 2016 18:20:08 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1473358800.013a4924bcee93f3df06c556cc28a9b426830625.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/oniguruma/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/oniguruma/oniguruma-5.9.5-r1.ebuild X-VCS-Directories: dev-libs/oniguruma/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 013a4924bcee93f3df06c556cc28a9b426830625 X-VCS-Branch: master Date: Thu, 8 Sep 2016 18:20:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 632d82a9-c8ab-4ad9-a7f4-9ac69e3bf93d X-Archives-Hash: ea3a43e4c3c13659559f5e155db42a19 commit: 013a4924bcee93f3df06c556cc28a9b426830625 Author: David Seifert gentoo org> AuthorDate: Thu Sep 8 18:19:41 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Thu Sep 8 18:20:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=013a4924 dev-libs/oniguruma: Bump to EAPI=6, remove autotools-multilib.eclass Package-Manager: portage-2.3.0 dev-libs/oniguruma/oniguruma-5.9.5-r1.ebuild | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/dev-libs/oniguruma/oniguruma-5.9.5-r1.ebuild b/dev-libs/oniguruma/oniguruma-5.9.5-r1.ebuild index 928a15d..ef40ae4 100644 --- a/dev-libs/oniguruma/oniguruma-5.9.5-r1.ebuild +++ b/dev-libs/oniguruma/oniguruma-5.9.5-r1.ebuild @@ -2,12 +2,10 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 # Needed for a sane .so versionning on fbsd, please dont drop -AUTOTOOLS_AUTORECONF=1 - -inherit eutils autotools-multilib +inherit autotools multilib-minimal MY_P=onig-${PV} @@ -25,15 +23,21 @@ DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} ) S=${WORKDIR}/${MY_P} -src_configure() { - local myeconfargs=( - $(use_enable combination-explosion-check) +src_prepare() { + default + mv configure.{in,ac} || die + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE=${S} econf \ + --enable-shared \ + $(use_enable static-libs static) \ + $(use_enable combination-explosion-check) \ $(use_enable crnl-as-line-terminator) - ) - autotools-multilib_src_configure } -src_install() { - autotools-multilib_src_install - use static-libs || prune_libtool_files +multilib_src_install_all() { + einstalldocs + find "${D}" -name '*.la' -delete || die }