sys-boot/makebootfat: Bump to EAPI 7
authorMichał Górny <mgorny@gentoo.org>
Sat, 9 Nov 2019 21:58:55 +0000 (22:58 +0100)
committerMichał Górny <mgorny@gentoo.org>
Sat, 9 Nov 2019 22:18:11 +0000 (23:18 +0100)
Closes: https://bugs.gentoo.org/697178
Signed-off-by: Michał Górny <mgorny@gentoo.org>
sys-boot/makebootfat/makebootfat-1.4.ebuild

index 3e58073508c8010bc62567ccb637f80c8b1a16f6..5482bdde364a25c73499a373b982b13c626ede17 100644 (file)
@@ -1,13 +1,13 @@
-# 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="Command line utility able to create bootable USB disks"
 HOMEPAGE="http://advancemame.sourceforge.net/boot-readme.html"
 SRC_URI="mirror://sourceforge/advancemame/${P}.tar.gz"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
@@ -16,11 +16,12 @@ RDEPEND="sys-boot/syslinux"
 DEPEND="${RDEPEND}"
 
 src_install() {
-       emake DESTDIR="${D}" install || die
+       default
 
        insinto /usr/share/makebootfat
-       doins mbrfat.bin || die
+       doins mbrfat.bin
 
        dodoc doc/*.txt
-       dohtml doc/*.html
+       docinto html
+       dodoc doc/*.html
 }