Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libfame/
Date: Fri, 09 Sep 2022 07:59:45
Message-Id: 1662710350.d478b67df44b28f0bf1b30d4dff239d8278966db.soap@gentoo
1 commit: d478b67df44b28f0bf1b30d4dff239d8278966db
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 9 07:59:10 2022 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 9 07:59:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d478b67d
7
8 media-libs/libfame: drop multilib
9
10 No multilib reverse dependencies.
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13 Signed-off-by: David Seifert <soap <AT> gentoo.org>
14
15 ...{libfame-0.9.1-r3.ebuild => libfame-0.9.1-r4.ebuild} | 17 +++++++++--------
16 1 file changed, 9 insertions(+), 8 deletions(-)
17
18 diff --git a/media-libs/libfame/libfame-0.9.1-r3.ebuild b/media-libs/libfame/libfame-0.9.1-r4.ebuild
19 similarity index 79%
20 rename from media-libs/libfame/libfame-0.9.1-r3.ebuild
21 rename to media-libs/libfame/libfame-0.9.1-r4.ebuild
22 index d8afa4ffd3a4..69b4bfe45f41 100644
23 --- a/media-libs/libfame/libfame-0.9.1-r3.ebuild
24 +++ b/media-libs/libfame/libfame-0.9.1-r4.ebuild
25 @@ -1,9 +1,9 @@
26 -# Copyright 1999-2021 Gentoo Authors
27 +# Copyright 1999-2022 Gentoo Authors
28 # Distributed under the terms of the GNU General Public License v2
29
30 -EAPI=7
31 +EAPI=8
32
33 -inherit autotools multilib-minimal
34 +inherit autotools
35
36 DESCRIPTION="MPEG-1 and MPEG-4 video encoding library"
37 HOMEPAGE="http://fame.sourceforge.net/"
38 @@ -33,15 +33,16 @@ src_prepare() {
39 eautoreconf
40 }
41
42 -multilib_src_configure() {
43 +src_configure() {
44 local myeconfargs=(
45 - --disable-static
46 $(use_enable cpu_flags_x86_mmx mmx)
47 )
48 - ECONF_SOURCE=${S} econf "${myeconfargs[@]}"
49 +
50 + econf "${myeconfargs[@]}"
51 }
52
53 -multilib_src_install_all() {
54 - einstalldocs
55 +src_install() {
56 + default
57 +
58 find "${ED}" -type f -name '*.la' -delete || die
59 }