diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-14 16:44:05 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-04-14 16:44:05 +0300 |
commit | 273acedca7ec129792b91a031aba7918acd8f069 (patch) | |
tree | 685abf1b68f8eccdb70ff7b70563f066208299c1 /media-sound/mpfc | |
parent | x11-plugins/wmcpuload: drop 1.1.1, EAPI6-- (diff) | |
download | gentoo-273acedca7ec129792b91a031aba7918acd8f069.tar.gz gentoo-273acedca7ec129792b91a031aba7918acd8f069.tar.bz2 gentoo-273acedca7ec129792b91a031aba7918acd8f069.zip |
media-sound/mpfc: drop 1.3.8.1-r4, EAPI6--
Closes: https://bugs.gentoo.org/929952
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'media-sound/mpfc')
-rw-r--r-- | media-sound/mpfc/mpfc-1.3.8.1-r4.ebuild | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/media-sound/mpfc/mpfc-1.3.8.1-r4.ebuild b/media-sound/mpfc/mpfc-1.3.8.1-r4.ebuild deleted file mode 100644 index cf3e34a807a0..000000000000 --- a/media-sound/mpfc/mpfc-1.3.8.1-r4.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="Music Player For Console" -HOMEPAGE="http://mpfc.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="alsa cdda flac gpm mad nls oss static-libs vorbis wav" - -RDEPEND="alsa? ( >=media-libs/alsa-lib-0.9.0 ) - flac? ( media-libs/flac:= ) - gpm? ( >=sys-libs/gpm-1.19.3 ) - mad? ( media-libs/libmad ) - vorbis? ( media-libs/libvorbis ) - sys-libs/ncurses:=[unicode(+)] - dev-libs/icu:=" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}/${P}-fix-underlinking.patch" - "${FILESDIR}/${P}-qa-implicit-declarations.patch" -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - econf \ - $(use_enable alsa) \ - $(use_enable cdda audiocd) \ - $(use_enable flac) \ - $(use_enable gpm) \ - $(use_enable mad mp3) \ - $(use_enable nls) \ - $(use_enable oss) \ - $(use_enable static-libs static) \ - $(use_enable vorbis ogg) \ - $(use_enable wav) -} - -src_install() { - default - - insinto /etc - doins mpfcrc - - # package provides .pc files - find "${D}" -name '*.la' -delete || die -} |