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 11520158003 for ; Fri, 9 Sep 2022 07:59:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC8A3E0920; Fri, 9 Sep 2022 07:59:43 +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 D6710E0920 for ; Fri, 9 Sep 2022 07:59:43 +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 9025B340EA7 for ; Fri, 9 Sep 2022 07:59:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE18F5D7 for ; Fri, 9 Sep 2022 07:59:39 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1662710350.d478b67df44b28f0bf1b30d4dff239d8278966db.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libfame/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libfame/libfame-0.9.1-r3.ebuild media-libs/libfame/libfame-0.9.1-r4.ebuild X-VCS-Directories: media-libs/libfame/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: d478b67df44b28f0bf1b30d4dff239d8278966db X-VCS-Branch: master Date: Fri, 9 Sep 2022 07:59:39 +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: 25738ddf-181e-4e7a-b776-cc60f0d70546 X-Archives-Hash: 01303374b6d12573c05de2a27f2f0cbe commit: d478b67df44b28f0bf1b30d4dff239d8278966db Author: Sam James gentoo org> AuthorDate: Fri Sep 9 07:59:10 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Sep 9 07:59:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d478b67d media-libs/libfame: drop multilib No multilib reverse dependencies. Signed-off-by: Sam James gentoo.org> Signed-off-by: David Seifert gentoo.org> ...{libfame-0.9.1-r3.ebuild => libfame-0.9.1-r4.ebuild} | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/media-libs/libfame/libfame-0.9.1-r3.ebuild b/media-libs/libfame/libfame-0.9.1-r4.ebuild similarity index 79% rename from media-libs/libfame/libfame-0.9.1-r3.ebuild rename to media-libs/libfame/libfame-0.9.1-r4.ebuild index d8afa4ffd3a4..69b4bfe45f41 100644 --- a/media-libs/libfame/libfame-0.9.1-r3.ebuild +++ b/media-libs/libfame/libfame-0.9.1-r4.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit autotools multilib-minimal +inherit autotools DESCRIPTION="MPEG-1 and MPEG-4 video encoding library" HOMEPAGE="http://fame.sourceforge.net/" @@ -33,15 +33,16 @@ src_prepare() { eautoreconf } -multilib_src_configure() { +src_configure() { local myeconfargs=( - --disable-static $(use_enable cpu_flags_x86_mmx mmx) ) - ECONF_SOURCE=${S} econf "${myeconfargs[@]}" + + econf "${myeconfargs[@]}" } -multilib_src_install_all() { - einstalldocs +src_install() { + default + find "${ED}" -type f -name '*.la' -delete || die }