From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9151A158043 for ; Sun, 14 Apr 2024 13:49:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09D53E2A0A; Sun, 14 Apr 2024 13:49:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E2F8BE2A10 for ; Sun, 14 Apr 2024 13:49:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30B9A3431F5 for ; Sun, 14 Apr 2024 13:49:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C34B16E0 for ; Sun, 14 Apr 2024 13:48:58 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1713102245.273acedca7ec129792b91a031aba7918acd8f069.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mpfc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mpfc/mpfc-1.3.8.1-r4.ebuild X-VCS-Directories: media-sound/mpfc/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 273acedca7ec129792b91a031aba7918acd8f069 X-VCS-Branch: master Date: Sun, 14 Apr 2024 13:48:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 365d319d-068a-46fc-b913-23ca4681cc54 X-Archives-Hash: 155b86765c8a818dad7379fb3f90e3e7 commit: 273acedca7ec129792b91a031aba7918acd8f069 Author: Arthur Zamarin gentoo org> AuthorDate: Sun Apr 14 13:44:05 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sun Apr 14 13:44:05 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=273acedc media-sound/mpfc: drop 1.3.8.1-r4, EAPI6-- Closes: https://bugs.gentoo.org/929952 Signed-off-by: Arthur Zamarin gentoo.org> media-sound/mpfc/mpfc-1.3.8.1-r4.ebuild | 58 --------------------------------- 1 file changed, 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 -}