dev-libs/onigmo: inherit multilib-minimal
authorAkinori Hattori <hattya@gentoo.org>
Tue, 17 Jul 2018 13:39:39 +0000 (22:39 +0900)
committerAkinori Hattori <hattya@gentoo.org>
Tue, 17 Jul 2018 13:39:39 +0000 (22:39 +0900)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

dev-libs/onigmo/onigmo-6.1.3.ebuild

index f909222f2bb3231c598fe774ff54e1f4a8d85582..4c34afcf8ac8958441a4bd94b63eabcf24e8e7dd 100644 (file)
@@ -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
 }