diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-12-24 13:31:27 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-12-24 15:51:48 +0100 |
commit | 0bfdaaa5cb65cdd7e41cdbf6e5153f36a281e11b (patch) | |
tree | ecbd38140d9a8979c939353c7ae3b2a75933365e /media-sound | |
parent | mate-desktop.org.eclass: Drop EAPI-6 support (diff) | |
download | gentoo-0bfdaaa5cb65cdd7e41cdbf6e5153f36a281e11b.tar.gz gentoo-0bfdaaa5cb65cdd7e41cdbf6e5153f36a281e11b.tar.bz2 gentoo-0bfdaaa5cb65cdd7e41cdbf6e5153f36a281e11b.zip |
media-sound/gbsplay: drop 0.0.91-r2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/gbsplay/Manifest | 1 | ||||
-rw-r--r-- | media-sound/gbsplay/gbsplay-0.0.91-r2.ebuild | 56 |
2 files changed, 0 insertions, 57 deletions
diff --git a/media-sound/gbsplay/Manifest b/media-sound/gbsplay/Manifest index 69bc90daccfb..cca4a146bc18 100644 --- a/media-sound/gbsplay/Manifest +++ b/media-sound/gbsplay/Manifest @@ -1,2 +1 @@ -DIST gbsplay-0.0.91.tar.gz 61071 BLAKE2B b1c5c0f7f852961a082a686eb992caa835480fc0a6c15f509ec637c016a64b830f7d6aaa337f204c78213ea5c95bac0e12649023780f38a84dddab97f5efe448 SHA512 94a5acd892740f2443fbc5455a190cba2aefddf3608a6f59213175bb8985d21d4f2cb4011e332756ae2bf977432e03be53014f203d7b9edc572048e2a6124f08 DIST gbsplay-0.0.94.tar.gz 136589 BLAKE2B 688fefc51fe693ab1da41f258bd6d7daccedadac31ecd80ba25488c11c6cfa6e823aeef5f97c1c9210b32aa02382845d312d077117df5781f5c2e2d165a352cc SHA512 36d545d658b57a86f31477911b29c0a9150e67a75b18a0b3897f47f58bec25588cda34c235ff10393f1767e3321bb9bd63debf0c30d3031e192b4df759053c1a diff --git a/media-sound/gbsplay/gbsplay-0.0.91-r2.ebuild b/media-sound/gbsplay/gbsplay-0.0.91-r2.ebuild deleted file mode 100644 index 78a4fa830bf5..000000000000 --- a/media-sound/gbsplay/gbsplay-0.0.91-r2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+alsa nas nls oss" - -RDEPEND="alsa? ( media-libs/alsa-lib:0 ) - nas? ( media-libs/nas:0 )" - -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext:0 )" - -PATCHES=( - "${FILESDIR}/${P}-fix-buildsystem.patch" -) - -src_configure() { - tc-export AR CC - - # No econf, because "unknown option '--build=x86_64-pc-linux-gnu'" - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --docdir=/usr/share/doc/${PF} \ - --without-xmmsplugin \ - --without-test \ - $(use_enable nls i18n) \ - $(use_enable oss devdsp) \ - $(use_enable alsa) \ - $(use_enable nas) || die "Configure failed." -} - -src_compile() { - emake CC="$(tc-getCC)" SPLINT="true" -} - -remove_disabled_locale() { - rm -r "${D}"/usr/share/locale/$1 || die -} - -src_install() { - default - - plocale_for_each_disabled_locale remove_disabled_locale -} |