diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2023-09-01 08:35:36 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2023-09-01 08:35:36 +0200 |
commit | 8de1665d4b194c733e3bf6510eaf7b45ac4bf3cc (patch) | |
tree | 23a9e9463d76889392043666a8f844fd9583940b /media-sound/mp3blaster | |
parent | media-sound/gmorgan: dropped obsolete 0.79-r2 (diff) | |
download | gentoo-8de1665d4b194c733e3bf6510eaf7b45ac4bf3cc.tar.gz gentoo-8de1665d4b194c733e3bf6510eaf7b45ac4bf3cc.tar.bz2 gentoo-8de1665d4b194c733e3bf6510eaf7b45ac4bf3cc.zip |
media-sound/mp3blaster: dropped obsolete 3.2.6-r1
Bug: https://bugs.gentoo.org/913362
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound/mp3blaster')
-rw-r--r-- | media-sound/mp3blaster/mp3blaster-3.2.6-r1.ebuild | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/media-sound/mp3blaster/mp3blaster-3.2.6-r1.ebuild b/media-sound/mp3blaster/mp3blaster-3.2.6-r1.ebuild deleted file mode 100644 index 7f2f19ec0182..000000000000 --- a/media-sound/mp3blaster/mp3blaster-3.2.6-r1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="Text console based program for playing audio files" -HOMEPAGE="http://www.mp3blaster.org/ http://mp3blaster.sourceforge.net/ https://github.com/stragulus/mp3blaster" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -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:= - lirc? ( app-misc/lirc ) - sdl? ( media-libs/libsdl ) - sid? ( media-libs/libsidplay:1 ) - vorbis? ( media-libs/libvorbis )" -DEPEND=" - ${RDEPEND} - oss? ( virtual/os-headers )" -BDEPEND="x11-misc/imake" - -PATCHES=( - "${FILESDIR}"/${PN}-3.2.5-fix-c++14.patch - "${FILESDIR}"/${PN}-3.2.5-fix-build-system.patch -) - -src_prepare() { - default - eautoreconf - - # file collision with media-sound/splay - sed -i -e 's:splay.1:splay_mp3blaster.1:' Makefile.in || die - mv -vf splay{,_mp3blaster}.1 || die -} - -src_configure() { - # libpth and newthreads support are both broken - econf \ - --disable-newthreads \ - --without-pth \ - --without-nas \ - $(use_with lirc) \ - $(use_with vorbis oggvorbis) \ - $(use_with sid sidplay) \ - --without-esd \ - $(use_with sdl) \ - $(use_with oss) -} - -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 - - # file collision with media-sound/splay - mv -vf "${ED}"/usr/bin/splay{,_mp3blaster} || die -} |