diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-10 12:49:24 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-10 13:05:46 +0100 |
commit | 5ecf04d96b8624672fb78b77c6de434bf7a0a9a9 (patch) | |
tree | 91c4574d07ee98ded77668d0570c292e200e24b0 /dev-embedded/pista | |
parent | sys-apps/qcontrol: Bump to EAPI 7 (diff) | |
download | gentoo-5ecf04d96b8624672fb78b77c6de434bf7a0a9a9.tar.gz gentoo-5ecf04d96b8624672fb78b77c6de434bf7a0a9a9.tar.bz2 gentoo-5ecf04d96b8624672fb78b77c6de434bf7a0a9a9.zip |
dev-embedded/pista: Bump to EAPI 7
Closes: https://bugs.gentoo.org/697362
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-embedded/pista')
-rw-r--r-- | dev-embedded/pista/pista-0.70.ebuild | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/dev-embedded/pista/pista-0.70.ebuild b/dev-embedded/pista/pista-0.70.ebuild index f9431fbdcf31..5c585c7fc978 100644 --- a/dev-embedded/pista/pista-0.70.ebuild +++ b/dev-embedded/pista/pista-0.70.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="Commandline-driven interface to PICSTART+ PIC programmer" HOMEPAGE="http://gatling.ikk.sztaki.hu/~kissg/pd/pista/pista.html" @@ -15,13 +15,10 @@ IUSE="" RDEPEND="dev-lang/perl dev-perl/TermReadKey" +DEPEND="dev-lang/perl" -src_compile() { - perl Makefile.PL PREFIX=/usr || die "Running Makefile.PL failed" - emake || die "make failed" -} +DOCS=( README Changes Copyright doc/pista.html ) -src_install() { - emake install DESTDIR=${D} || die - dodoc README Changes Copyright doc/pista.html +src_configure() { + perl Makefile.PL PREFIX=/usr || die "Running Makefile.PL failed" } |