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 C948A138334 for ; Tue, 17 Jul 2018 13:41:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38320E09CD; Tue, 17 Jul 2018 13:41:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 03430E09CD for ; Tue, 17 Jul 2018 13:41:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A09D335C99 for ; Tue, 17 Jul 2018 13:41:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E534379 for ; Tue, 17 Jul 2018 13:41:02 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1531834779.fd119669b35672d0f32b5736dd34153302be1d1d.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/onigmo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/onigmo/onigmo-6.1.3.ebuild X-VCS-Directories: dev-libs/onigmo/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: fd119669b35672d0f32b5736dd34153302be1d1d X-VCS-Branch: master Date: Tue, 17 Jul 2018 13:41:02 +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: 2cb041d3-e08f-4644-94cc-ec0aac155a09 X-Archives-Hash: b87a5f8665365c543db75000be931bed commit: fd119669b35672d0f32b5736dd34153302be1d1d Author: Akinori Hattori gentoo org> AuthorDate: Tue Jul 17 13:39:39 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Tue Jul 17 13:39:39 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd119669 dev-libs/onigmo: inherit multilib-minimal Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/onigmo/onigmo-6.1.3.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-libs/onigmo/onigmo-6.1.3.ebuild b/dev-libs/onigmo/onigmo-6.1.3.ebuild index f909222f2bb..4c34afcf8ac 100644 --- a/dev-libs/onigmo/onigmo-6.1.3.ebuild +++ b/dev-libs/onigmo/onigmo-6.1.3.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI="6" -inherit autotools +inherit autotools multilib-minimal DESCRIPTION="Onigmo is a regular expressions library forked from Oniguruma" HOMEPAGE="https://github.com/k-takata/Onigmo" @@ -14,22 +14,21 @@ SLOT="0/6" KEYWORDS="~amd64 ~x86" IUSE="combination-explosion-check crnl-as-line-terminator static-libs" -DOCS=(AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt) +DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} doc/UnicodeProps.txt ) src_prepare() { default eautoreconf } -src_configure() { +multilib_src_configure() { ECONF_SOURCE="${S}" econf \ $(use_enable combination-explosion-check) \ $(use_enable crnl-as-line-terminator) \ $(use_enable static-libs static) } -src_install() { - default +multilib_src_install_all() { einstalldocs find "${D}" -name "*.la" -delete || die }