blob: 69b4bfe45f413a23f38b68ec46bc8a62d33c61cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="MPEG-1 and MPEG-4 video encoding library"
HOMEPAGE="http://fame.sourceforge.net/"
SRC_URI="mirror://sourceforge/fame/${P}.tar.gz
http://digilander.libero.it/dgp85/gentoo/${PN}-patches-2.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
IUSE="cpu_flags_x86_mmx"
PATCHES=(
"${WORKDIR}"/${PV}
"${FILESDIR}"/${P}-gcc43.patch
"${FILESDIR}"/${P}-mmx-configure.ac.patch
)
src_prepare() {
default
mv configure.in configure.ac || die
rm acinclude.m4 || die
# Do not add -march=i586, bug #41770.
sed -i -e 's:-march=i[345]86 ::g' configure.ac || die
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable cpu_flags_x86_mmx mmx)
)
econf "${myeconfargs[@]}"
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete || die
}
|