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 E4E8B139696 for ; Wed, 5 Jul 2017 11:54:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1468E214004; Wed, 5 Jul 2017 11:54:53 +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 E65FE214005 for ; Wed, 5 Jul 2017 11:54:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9754F341796 for ; Wed, 5 Jul 2017 11:54:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D584E7490 for ; Wed, 5 Jul 2017 11:54:49 +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: <1499255607.22130d9cd9ede5784c0ed1f98a4d66ac6ef3b2aa.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/m17n-db/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/m17n-db/m17n-db-1.6.4.ebuild X-VCS-Directories: dev-db/m17n-db/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 22130d9cd9ede5784c0ed1f98a4d66ac6ef3b2aa X-VCS-Branch: master Date: Wed, 5 Jul 2017 11:54:49 +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: cf82cc7e-43b3-49b4-8eb5-9bb4a6f78d78 X-Archives-Hash: baad7124e93d8f166d516a77d3ca4130 commit: 22130d9cd9ede5784c0ed1f98a4d66ac6ef3b2aa Author: Akinori Hattori gentoo org> AuthorDate: Wed Jul 5 11:53:27 2017 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Wed Jul 5 11:53:27 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22130d9c dev-db/m17n-db: update to EAPI 6 Package-Manager: Portage-2.3.6, Repoman-2.3.1 dev-db/m17n-db/m17n-db-1.6.4.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dev-db/m17n-db/m17n-db-1.6.4.ebuild b/dev-db/m17n-db/m17n-db-1.6.4.ebuild index b004621d66c..68c3d2fe9f5 100644 --- a/dev-db/m17n-db/m17n-db-1.6.4.ebuild +++ b/dev-db/m17n-db/m17n-db-1.6.4.ebuild @@ -1,13 +1,11 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=4 - -inherit eutils +EAPI="6" DESCRIPTION="Database for the m17n library" HOMEPAGE="https://savannah.nongnu.org/projects/m17n" -SRC_URI="http://download.savannah.gnu.org/releases/m17n/${P}.tar.gz" +SRC_URI="mirror://nongnu/m17n/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" @@ -18,9 +16,11 @@ DEPEND="sys-devel/gettext" RDEPEND="virtual/libintl" src_install() { - emake DESTDIR="${D}" install || die + default + + docinto FORMATS + dodoc FORMATS/* - dodoc AUTHORS ChangeLog NEWS README - docinto FORMATS; dodoc FORMATS/* - docinto UNIDATA; dodoc UNIDATA/* + docinto UNIDATA + dodoc UNIDATA/* }