Gentoo Archives: gentoo-commits

From: "Thomas Sachau (tommy)" <tommy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libvpx: libvpx-0.9.6.ebuild ChangeLog
Date: Sat, 28 May 2011 19:08:35
Message-Id: 20110528190823.4EDE720054@flycatcher.gentoo.org
1 tommy 11/05/28 19:08:23
2
3 Modified: libvpx-0.9.6.ebuild ChangeLog
4 Log:
5 Adding workaround for bug 345161, forces yasm as as interpreter and adjusts the target platform for cross-compilation
6
7 (Portage version: 2.2.0_alpha37-r1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 media-libs/libvpx/libvpx-0.9.6.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.6.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.6.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-0.9.6.ebuild?r1=1.2&r2=1.3
15
16 Index: libvpx-0.9.6.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-0.9.6.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- libvpx-0.9.6.ebuild 16 May 2011 16:39:23 -0000 1.2
23 +++ libvpx-0.9.6.ebuild 28 May 2011 19:08:23 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-0.9.6.ebuild,v 1.2 2011/05/16 16:39:23 xarthisius Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-0.9.6.ebuild,v 1.3 2011/05/28 19:08:23 tommy Exp $
29
30 EAPI=3
31 inherit eutils multilib toolchain-funcs
32 @@ -41,6 +41,10 @@
33
34 src_configure() {
35 tc-export CC
36 + local archparams=""
37 + [ "$ABI" = "x86" ] && archparams=" --target=x86-linux-gcc"
38 + [ "$ABI" = "amd64" ] && archparams=" --target=x86_64-linux-gcc"
39 + ( use x86 || use amd64 ) && archparams+=" --as=yasm"
40 ./configure \
41 --prefix="${EPREFIX}"/usr \
42 --libdir="${EPREFIX}"/usr/$(get_libdir) \
43 @@ -58,6 +62,7 @@
44 $(use_enable doc install-docs) \
45 $(use_enable postproc) \
46 $(use_enable threads multithread) \
47 + $archparams \
48 || die
49 }
50
51
52
53
54 1.17 media-libs/libvpx/ChangeLog
55
56 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.17&view=markup
57 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.17&content-type=text/plain
58 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?r1=1.16&r2=1.17
59
60 Index: ChangeLog
61 ===================================================================
62 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v
63 retrieving revision 1.16
64 retrieving revision 1.17
65 diff -u -r1.16 -r1.17
66 --- ChangeLog 16 May 2011 16:39:23 -0000 1.16
67 +++ ChangeLog 28 May 2011 19:08:23 -0000 1.17
68 @@ -1,6 +1,10 @@
69 # ChangeLog for media-libs/libvpx
70 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
71 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.16 2011/05/16 16:39:23 xarthisius Exp $
72 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.17 2011/05/28 19:08:23 tommy Exp $
73 +
74 + 28 May 2011; Thomas Sachau (Tommy[D]) <tommy@g.o> libvpx-0.9.6.ebuild:
75 + Adding workaround for bug 345161, forces yasm as as interpreter and adjusts
76 + the target platform for cross-compilation
77
78 16 May 2011; Kacper Kowalik <xarthisius@g.o> libvpx-0.9.6.ebuild:
79 Marked ~ppc/~ppc64 wrt #360427