commit: 90bf1a7c527ccdb703581cd57150020dff72762c Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Fri Jan 5 12:48:46 2018 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Fri Jan 5 12:52:24 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90bf1a7c
app-text/antixls: EAPI-bump Package-Manager: Portage-2.3.13, Repoman-2.3.3 app-text/antixls/antixls-0.3b.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app-text/antixls/antixls-0.3b.ebuild b/app-text/antixls/antixls-0.3b.ebuild index a29d5e2b75c..53e29234db5 100644 --- a/app-text/antixls/antixls-0.3b.ebuild +++ b/app-text/antixls/antixls-0.3b.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI=6 + DESCRIPTION="Print out an XLS file with minimal formatting, or extract the data into CSV" HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" SRC_URI="https://dev.gentoo.org/~grobian/distfiles/${P}.perl" @@ -9,8 +11,13 @@ SLOT="0" KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="" DEPEND="dev-perl/Spreadsheet-ParseExcel" +RDEPEND="${DEPEND}" + +src_unpack() { + mkdir "${S}" || die + cp "${DISTDIR}/${P}.perl" "${S}"/${PN} || die +} src_install() { - mv "${DISTDIR}/${P}.perl" ${PN} dobin ${PN} }
