diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2018-05-19 09:14:19 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-05-19 20:30:33 -0400 |
commit | 22d3d224b837a63b234fa488c2f6abfd4614078c (patch) | |
tree | 51e5e2e0adcdbc2cce3e045b07e8b36790909a16 /media-sound/gbsplay | |
parent | media-sound/orpheus: remove old (diff) | |
download | gentoo-22d3d224b837a63b234fa488c2f6abfd4614078c.tar.gz gentoo-22d3d224b837a63b234fa488c2f6abfd4614078c.tar.bz2 gentoo-22d3d224b837a63b234fa488c2f6abfd4614078c.zip |
media-sound/gbsplay: remove old
Diffstat (limited to 'media-sound/gbsplay')
-rw-r--r-- | media-sound/gbsplay/gbsplay-0.0.91-r1.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/media-sound/gbsplay/gbsplay-0.0.91-r1.ebuild b/media-sound/gbsplay/gbsplay-0.0.91-r1.ebuild deleted file mode 100644 index 3b74a80e008e..000000000000 --- a/media-sound/gbsplay/gbsplay-0.0.91-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -IUSE="+alsa nas nls oss" -PLOCALES="de en" - -inherit l10n toolchain-funcs - -DESCRIPTION="Nintendo Gameboy sound player for GBS format" -HOMEPAGE="http://gbsplay.berlios.de" -#SRC_URI="mirror://berlios/${PN}/${P}.tar.gz" -SRC_URI="mirror://gentoo/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="alsa? ( media-libs/alsa-lib:0 ) - nas? ( media-libs/nas:0 )" - -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext:0 )" - -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 -rf "${D}"/usr/share/locale/$1 -} - -src_install() { - default - - l10n_for_each_disabled_locale_do remove_disabled_locale -} |