Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libfame: ChangeLog libfame-0.9.1-r1.ebuild
Date: Mon, 28 Nov 2011 03:27:05
Message-Id: 20111128032654.921EC20034@flycatcher.gentoo.org
1 radhermit 11/11/28 03:26:54
2
3 Modified: ChangeLog libfame-0.9.1-r1.ebuild
4 Log:
5 Fix autotools-utils usage (bug #392147).
6
7 (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.56 media-libs/libfame/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libfame/ChangeLog?rev=1.56&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libfame/ChangeLog?rev=1.56&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libfame/ChangeLog?r1=1.55&r2=1.56
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libfame/ChangeLog,v
19 retrieving revision 1.55
20 retrieving revision 1.56
21 diff -u -r1.55 -r1.56
22 --- ChangeLog 27 Nov 2011 04:05:21 -0000 1.55
23 +++ ChangeLog 28 Nov 2011 03:26:54 -0000 1.56
24 @@ -1,6 +1,9 @@
25 # ChangeLog for media-libs/libfame
26 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libfame/ChangeLog,v 1.55 2011/11/27 04:05:21 radhermit Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libfame/ChangeLog,v 1.56 2011/11/28 03:26:54 radhermit Exp $
29 +
30 + 28 Nov 2011; Tim Harder <radhermit@g.o> libfame-0.9.1-r1.ebuild:
31 + Fix autotools-utils usage (bug #392147).
32
33 27 Nov 2011; Tim Harder <radhermit@g.o> libfame-0.9.1-r1.ebuild:
34 Build in the source tree.
35
36
37
38 1.30 media-libs/libfame/libfame-0.9.1-r1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libfame/libfame-0.9.1-r1.ebuild?rev=1.30&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libfame/libfame-0.9.1-r1.ebuild?rev=1.30&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libfame/libfame-0.9.1-r1.ebuild?r1=1.29&r2=1.30
43
44 Index: libfame-0.9.1-r1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/libfame/libfame-0.9.1-r1.ebuild,v
47 retrieving revision 1.29
48 retrieving revision 1.30
49 diff -u -r1.29 -r1.30
50 --- libfame-0.9.1-r1.ebuild 27 Nov 2011 04:05:21 -0000 1.29
51 +++ libfame-0.9.1-r1.ebuild 28 Nov 2011 03:26:54 -0000 1.30
52 @@ -1,10 +1,10 @@
53 # Copyright 1999-2011 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libfame/libfame-0.9.1-r1.ebuild,v 1.29 2011/11/27 04:05:21 radhermit Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libfame/libfame-0.9.1-r1.ebuild,v 1.30 2011/11/28 03:26:54 radhermit Exp $
57
58 EAPI=4
59
60 -inherit eutils autotools-utils
61 +inherit autotools-utils
62
63 PATCHLEVEL="2"
64 DESCRIPTION="MPEG-1 and MPEG-4 video encoding library"
65 @@ -17,23 +17,21 @@
66 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86"
67 IUSE="mmx static-libs"
68
69 -AUTOTOOLS_IN_SOURCE_BUILD=1
70 +PATCHES=( "${FILESDIR}"/${P}-gcc43.patch )
71 +
72 +DOCS=( AUTHORS BUGS CHANGES README TODO )
73
74 src_prepare() {
75 EPATCH_SUFFIX="patch" epatch "${WORKDIR}"/${PV}
76
77 # Do not add -march=i586, bug #41770.
78 sed -i -e 's:-march=i[345]86 ::g' configure
79 - epatch "${FILESDIR}/${P}-gcc43.patch"
80 + autotools-utils_src_prepare
81 }
82
83 src_configure() {
84 - econf \
85 - $(use_enable mmx) \
86 - $(use_enable static-libs static)
87 -}
88 -
89 -src_install() {
90 - default
91 - remove_libtool_files
92 + local myeconfargs=(
93 + $(use_enable mmx)
94 + )
95 + autotools-utils_src_configure
96 }