diff options
author | Akinori Hattori <hattya@gentoo.org> | 2017-07-05 20:53:27 +0900 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2017-07-05 20:53:27 +0900 |
commit | 22130d9cd9ede5784c0ed1f98a4d66ac6ef3b2aa (patch) | |
tree | b3d28c3b90f745c6b6b8456c74c5b02aff0108f7 /dev-db | |
parent | dev-db/m17n-db: drop old (diff) | |
download | gentoo-22130d9cd9ede5784c0ed1f98a4d66ac6ef3b2aa.tar.gz gentoo-22130d9cd9ede5784c0ed1f98a4d66ac6ef3b2aa.tar.bz2 gentoo-22130d9cd9ede5784c0ed1f98a4d66ac6ef3b2aa.zip |
dev-db/m17n-db: update to EAPI 6
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/m17n-db/m17n-db-1.6.4.ebuild | 16 |
1 files 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 b004621d66c2..68c3d2fe9f5e 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/* } |