diff options
author | David Seifert <soap@gentoo.org> | 2022-07-29 23:38:18 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-07-29 23:38:18 +0200 |
commit | 0718c965155487fbc59e10ec50368976472555af (patch) | |
tree | 3d35d8cde11fb960effd087a27e2a7f32f5f6726 | |
parent | media-sound/mp32ogg: update EAPI 6 -> 8 (diff) | |
download | gentoo-0718c965155487fbc59e10ec50368976472555af.tar.gz gentoo-0718c965155487fbc59e10ec50368976472555af.tar.bz2 gentoo-0718c965155487fbc59e10ec50368976472555af.zip |
media-sound/mp3blaster: update EAPI 6 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
-rw-r--r-- | media-sound/mp3blaster/mp3blaster-3.2.6-r1.ebuild (renamed from media-sound/mp3blaster/mp3blaster-3.2.6.ebuild) | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild b/media-sound/mp3blaster/mp3blaster-3.2.6-r1.ebuild index 396b57202668..7f2f19ec0182 100644 --- a/media-sound/mp3blaster/mp3blaster-3.2.6.ebuild +++ b/media-sound/mp3blaster/mp3blaster-3.2.6-r1.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 inherit autotools @@ -13,18 +13,19 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm ppc ppc64 ~riscv sparc x86" IUSE="lirc oss +sdl sid vorbis" +REQUIRED_USE="|| ( oss sdl )" RDEPEND=" - sys-libs/ncurses:0= + sys-libs/ncurses:= lirc? ( app-misc/lirc ) sdl? ( media-libs/libsdl ) sid? ( media-libs/libsidplay:1 ) vorbis? ( media-libs/libvorbis )" -DEPEND="${RDEPEND} - x11-misc/imake +DEPEND=" + ${RDEPEND} oss? ( virtual/os-headers )" +BDEPEND="x11-misc/imake" -REQUIRED_USE="|| ( oss sdl )" PATCHES=( "${FILESDIR}"/${PN}-3.2.5-fix-c++14.patch "${FILESDIR}"/${PN}-3.2.5-fix-build-system.patch @@ -57,8 +58,8 @@ src_install() { default # relocate everything except commands.txt because it's used by src/main.cc - mv -vf "${ED%/}"/usr/share/{${PN}/{charmap,sample.*},doc/${PF}} || die + mv -vf "${ED}"/usr/share/{${PN}/{charmap,sample.*},doc/${PF}} || die # file collision with media-sound/splay - mv -vf "${ED%/}"/usr/bin/splay{,_mp3blaster} || die + mv -vf "${ED}"/usr/bin/splay{,_mp3blaster} || die } |