diff options
author | Alexey Sokolov <alexey+gentoo@asokolov.org> | 2023-01-02 10:03:07 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-01-02 10:03:07 +0100 |
commit | 8b71b4d465800447fd6a1f4e852537d48f8c5253 (patch) | |
tree | d6afef488b821bf88cdc2814c360cae1e0d3f48c /app-cdr/bchunk | |
parent | media-libs/libffado: dropped obsolete 2.4.6 (diff) | |
download | gentoo-8b71b4d465800447fd6a1f4e852537d48f8c5253.tar.gz gentoo-8b71b4d465800447fd6a1f4e852537d48f8c5253.tar.bz2 gentoo-8b71b4d465800447fd6a1f4e852537d48f8c5253.zip |
app-cdr/bchunk: update EAPI 7 -> 8
Closes: https://github.com/gentoo/gentoo/pull/28896
Signed-off-by: Alexey Sokolov <alexey+gentoo@asokolov.org>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-cdr/bchunk')
-rw-r--r-- | app-cdr/bchunk/bchunk-1.2.2-r1.ebuild (renamed from app-cdr/bchunk/bchunk-1.2.2.ebuild) | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/app-cdr/bchunk/bchunk-1.2.2.ebuild b/app-cdr/bchunk/bchunk-1.2.2-r1.ebuild index 670347ecf25e..560ed89d1b81 100644 --- a/app-cdr/bchunk/bchunk-1.2.2.ebuild +++ b/app-cdr/bchunk/bchunk-1.2.2-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit toolchain-funcs @@ -13,8 +13,6 @@ LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x86-solaris" -DOCS=( "${PN}.spec" README ChangeLog ) - src_compile() { emake \ CC="$(tc-getCC)" \ @@ -23,7 +21,8 @@ src_compile() { } src_install() { - dobin "${PN}" - doman "${PN}.1" + dobin bchunk + doman bchunk.1 einstalldocs + dodoc bchunk.spec } |