diff options
author | David Seifert <soap@gentoo.org> | 2019-10-16 12:18:07 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-10-16 12:18:07 +0200 |
commit | 469ed2c8bf70ae5325226b39feb14ded49a5dded (patch) | |
tree | a74a762c76d03342d43ca8322ee6872b34eb98e0 /app-misc | |
parent | app-doc/lapack-docs: Port to EAPI 7 (diff) | |
download | gentoo-469ed2c8bf70ae5325226b39feb14ded49a5dded.tar.gz gentoo-469ed2c8bf70ae5325226b39feb14ded49a5dded.tar.bz2 gentoo-469ed2c8bf70ae5325226b39feb14ded49a5dded.zip |
app-misc/astrolog-ephemeris: Port to EAPI 7
Closes: https://bugs.gentoo.org/697396
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/astrolog-ephemeris/astrolog-ephemeris-5.40.ebuild | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/app-misc/astrolog-ephemeris/astrolog-ephemeris-5.40.ebuild b/app-misc/astrolog-ephemeris/astrolog-ephemeris-5.40.ebuild index 0e79b4d13905..269fbde6ea43 100644 --- a/app-misc/astrolog-ephemeris/astrolog-ephemeris-5.40.ebuild +++ b/app-misc/astrolog-ephemeris/astrolog-ephemeris-5.40.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 DESCRIPTION="ephemeris files for optional extended accuracy of astrolog's calculations" HOMEPAGE="http://www.astrolog.org/astrolog.htm" @@ -16,10 +16,9 @@ IUSE="" S="${WORKDIR}" RDEPEND="app-misc/astrolog" -DEPEND="${RDEPEND} - app-arch/unzip" +BDEPEND="app-arch/unzip" src_install() { - dodir /usr/share/astrolog - cp * "${D}"/usr/share/astrolog || die "cp failed" + insinto /usr/share/astrolog + doins -r . } |