diff options
author | David Seifert <soap@gentoo.org> | 2022-03-20 19:48:59 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-03-20 19:48:59 +0100 |
commit | b117f0790ebafb3de6d1071ee79d98cbd3d62cc0 (patch) | |
tree | 4ab184792c04141cd2e9859f811cefc6fb7192a2 /media-sound/vorbisgain | |
parent | media-sound/alac_decoder: update EAPI 6 -> 8 (diff) | |
download | gentoo-b117f0790ebafb3de6d1071ee79d98cbd3d62cc0.tar.gz gentoo-b117f0790ebafb3de6d1071ee79d98cbd3d62cc0.tar.bz2 gentoo-b117f0790ebafb3de6d1071ee79d98cbd3d62cc0.zip |
media-sound/vorbisgain: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-sound/vorbisgain')
-rw-r--r-- | media-sound/vorbisgain/vorbisgain-0.37-r3.ebuild (renamed from media-sound/vorbisgain/vorbisgain-0.37-r2.ebuild) | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/media-sound/vorbisgain/vorbisgain-0.37-r2.ebuild b/media-sound/vorbisgain/vorbisgain-0.37-r3.ebuild index 89c9d228496b..0757e73f9d65 100644 --- a/media-sound/vorbisgain/vorbisgain-0.37-r2.ebuild +++ b/media-sound/vorbisgain/vorbisgain-0.37-r3.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="Calculator of perceived sound level for Ogg Vorbis files" HOMEPAGE="https://sjeng.org/vorbisgain.html" @@ -10,7 +10,6 @@ SRC_URI="https://sjeng.org/ftp/vorbis/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ppc ppc64 ~riscv sparc x86" -IUSE="" RDEPEND=" media-libs/libogg @@ -21,8 +20,12 @@ PATCHES=( # bug 200931 "${FILESDIR}"/${P}-fix-errno-and-warnings.patch ) -DOCS=( NEWS README vorbisgain.txt ) src_configure() { econf --enable-recursive } + +src_install() { + default + dodoc vorbisgain.txt +} |