diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-09 22:58:55 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-09 23:18:11 +0100 |
commit | 0f01c18be2fc1b7e58e9faf21f9a4088a2bc0119 (patch) | |
tree | abae76d9db32c4ea3e677123a8649c82136cb3c7 /sys-boot/makebootfat | |
parent | dev-tex/newlfm: fix doc QA warnings (diff) | |
download | gentoo-0f01c18be2fc1b7e58e9faf21f9a4088a2bc0119.tar.gz gentoo-0f01c18be2fc1b7e58e9faf21f9a4088a2bc0119.tar.bz2 gentoo-0f01c18be2fc1b7e58e9faf21f9a4088a2bc0119.zip |
sys-boot/makebootfat: Bump to EAPI 7
Closes: https://bugs.gentoo.org/697178
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-boot/makebootfat')
-rw-r--r-- | sys-boot/makebootfat/makebootfat-1.4.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sys-boot/makebootfat/makebootfat-1.4.ebuild b/sys-boot/makebootfat/makebootfat-1.4.ebuild index 3e58073508c8..5482bdde364a 100644 --- a/sys-boot/makebootfat/makebootfat-1.4.ebuild +++ b/sys-boot/makebootfat/makebootfat-1.4.ebuild @@ -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 } |