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 B7A12158089 for ; Tue, 26 Sep 2023 18:08:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 087312BC015; Tue, 26 Sep 2023 18:08:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 E28852BC015 for ; Tue, 26 Sep 2023 18:08:21 +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 00743335D1B for ; Tue, 26 Sep 2023 18:08:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 992BD1188 for ; Tue, 26 Sep 2023 18:08:19 +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: <1695751570.31924c07f3aedf1c491da6de90ab99b776760107.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-r5.ebuild X-VCS-Directories: media-sound/mpfc/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 31924c07f3aedf1c491da6de90ab99b776760107 X-VCS-Branch: master Date: Tue, 26 Sep 2023 18:08:19 +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: 3e5fda24-f15c-49cd-800e-c083b68b41e7 X-Archives-Hash: a05a316490dc6eb812aca0065e7ff082 commit: 31924c07f3aedf1c491da6de90ab99b776760107 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Sep 24 16:18:47 2023 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Tue Sep 26 18:06:10 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31924c07 media-sound/mpfc: EAPI8 bump, use https Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/33037 Signed-off-by: Arthur Zamarin gentoo.org> media-sound/mpfc/mpfc-1.3.8.1-r5.ebuild | 60 +++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/media-sound/mpfc/mpfc-1.3.8.1-r5.ebuild b/media-sound/mpfc/mpfc-1.3.8.1-r5.ebuild new file mode 100644 index 000000000000..f182195b0023 --- /dev/null +++ b/media-sound/mpfc/mpfc-1.3.8.1-r5.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Music Player For Console" +HOMEPAGE="https://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() { + local myeconfargs=( + $(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) + ) + econf "${myeconfargs[@]}" +} + +src_install() { + default + + insinto /etc + doins mpfcrc + + # package provides .pc files + find "${D}" -name '*.la' -delete || die +}