diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-05-29 10:02:17 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-05-29 16:10:05 -0400 |
commit | 415fd7b149a2ab8c34711dacc8b6c0a6333f4a7e (patch) | |
tree | a3bd3d37ef991dad1e26e6000c862d37cca5eaa2 /app-emulation/coldfire | |
parent | sys-fs/e2fsprogs: arm stable, bug #655850 (diff) | |
download | gentoo-415fd7b149a2ab8c34711dacc8b6c0a6333f4a7e.tar.gz gentoo-415fd7b149a2ab8c34711dacc8b6c0a6333f4a7e.tar.bz2 gentoo-415fd7b149a2ab8c34711dacc8b6c0a6333f4a7e.zip |
app-emulation/coldfire: bump EAPI and drop eutils
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8640
Diffstat (limited to 'app-emulation/coldfire')
-rw-r--r-- | app-emulation/coldfire/coldfire-0.3.1.ebuild | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/app-emulation/coldfire/coldfire-0.3.1.ebuild b/app-emulation/coldfire/coldfire-0.3.1.ebuild index ac3e77cd5aa0..91abcd06d005 100644 --- a/app-emulation/coldfire/coldfire-0.3.1.ebuild +++ b/app-emulation/coldfire/coldfire-0.3.1.ebuild @@ -1,9 +1,7 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" - -inherit eutils +EAPI=7 DESCRIPTION="Motorola Coldfire Emulator" HOMEPAGE="http://www.slicer.ca/coldfire/" @@ -17,13 +15,12 @@ IUSE="" DEPEND="sys-libs/ncurses sys-libs/readline" -src_prepare() { - epatch "${FILESDIR}"/${P}-build.patch - epatch "${FILESDIR}"/${P}-headers.patch -} +PATCHES=( + "${FILESDIR}/${P}-build.patch" + "${FILESDIR}/${P}-headers.patch" +) src_install() { - dodir /usr/bin - einstall || die + dobin coldfire dodoc CONTRIBUTORS HACKING README } |