summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2024-01-29 09:38:25 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2024-01-29 09:38:38 +0100
commit92a4b189c562b6d9fd17f4f2c0b3f86b97d5474f (patch)
treee4b11afb4196da45cc591e51c7532c1d35cdefa8 /media-sound
parentdev-python/rpds-py: Stabilize 0.17.1 amd64, #923212 (diff)
downloadgentoo-92a4b189c562b6d9fd17f4f2c0b3f86b97d5474f.tar.gz
gentoo-92a4b189c562b6d9fd17f4f2c0b3f86b97d5474f.tar.bz2
gentoo-92a4b189c562b6d9fd17f4f2c0b3f86b97d5474f.zip
media-sound/gbsplay: removed obsolete 0.0.94
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/gbsplay/gbsplay-0.0.94.ebuild68
1 files changed, 0 insertions, 68 deletions
diff --git a/media-sound/gbsplay/gbsplay-0.0.94.ebuild b/media-sound/gbsplay/gbsplay-0.0.94.ebuild
deleted file mode 100644
index 7e0fdf78678b..000000000000
--- a/media-sound/gbsplay/gbsplay-0.0.94.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PLOCALES="de en"
-inherit plocale toolchain-funcs
-
-DESCRIPTION="Nintendo Gameboy sound player for GBS format"
-HOMEPAGE="https://www.cgarbs.de/gbsplay.en.html"
-SRC_URI="https://github.com/mmitch/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+alsa nas nls oss pulseaudio"
-
-RDEPEND="
- alsa? ( media-libs/alsa-lib:0 )
- nas? ( media-libs/nas:0 )
- pulseaudio? ( media-libs/libpulse )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="nls? ( sys-devel/gettext:0 )"
-
-PATCHES=(
- # git master
- "${FILESDIR}/${P}-fix-sharedlib-build.patch"
- "${FILESDIR}/${P}-fix-off-by-one-err.patch"
- "${FILESDIR}/${P}-fix-buildsys-1.patch"
- "${FILESDIR}/${P}-fix-buildsys-2.patch"
- # downstream
- "${FILESDIR}/${P}-no-install-desktop-mime.patch"
-)
-
-src_configure() {
- tc-export AR CC
-
- local myconfargs=(
- --prefix=/usr
- --mandir=/usr/share/man
- --docdir=/usr/share/doc/${PF}
- --disable-hardening
- --without-xmmsplugin
- --without-test
- $(use_enable alsa)
- $(use_enable nas)
- $(use_enable nls i18n)
- $(use_enable oss devdsp)
- $(use_enable pulseaudio pulse)
- )
-
- # No econf, because "unknown option '--libdir=/usr/lib64"
- ./configure ${myconfargs[@]} || die "Configure failed."
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" SPLINT="true"
-}
-
-src_install() {
- remove_disabled_locale() {
- rm -r "${D}"/usr/share/locale/$1 || die
- }
- default
-
- plocale_for_each_disabled_locale remove_disabled_locale
-}