commit: 469ed2c8bf70ae5325226b39feb14ded49a5dded Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Wed Oct 16 10:18:07 2019 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Wed Oct 16 10:18:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=469ed2c8
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 <AT> gentoo.org> app-misc/astrolog-ephemeris/astrolog-ephemeris-5.40.ebuild | 11 +++++------ 1 file 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 0e79b4d1390..269fbde6ea4 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 . }
