Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libdca: ChangeLog libdca-0.0.5-r3.ebuild
Date: Mon, 29 Jul 2013 19:57:54
Message-Id: 20130729195738.B34402171C@flycatcher.gentoo.org
1 aballier 13/07/29 19:57:38
2
3 Modified: ChangeLog libdca-0.0.5-r3.ebuild
4 Log:
5 Do not build the binaries for non native ABIs: They will be thrown away after.
6
7 (Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
8
9 Revision Changes Path
10 1.33 media-libs/libdca/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdca/ChangeLog?rev=1.33&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdca/ChangeLog?rev=1.33&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdca/ChangeLog?r1=1.32&r2=1.33
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libdca/ChangeLog,v
19 retrieving revision 1.32
20 retrieving revision 1.33
21 diff -u -r1.32 -r1.33
22 --- ChangeLog 28 Jul 2013 22:10:21 -0000 1.32
23 +++ ChangeLog 29 Jul 2013 19:57:38 -0000 1.33
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-libs/libdca
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdca/ChangeLog,v 1.32 2013/07/28 22:10:21 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdca/ChangeLog,v 1.33 2013/07/29 19:57:38 aballier Exp $
29 +
30 + 29 Jul 2013; Alexis Ballier <aballier@g.o> libdca-0.0.5-r3.ebuild:
31 + Do not build the binaries for non native ABIs: They will be thrown away
32 + after.
33
34 *libdca-0.0.5-r3 (28 Jul 2013)
35
36
37
38
39 1.2 media-libs/libdca/libdca-0.0.5-r3.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdca/libdca-0.0.5-r3.ebuild?rev=1.2&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdca/libdca-0.0.5-r3.ebuild?rev=1.2&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libdca/libdca-0.0.5-r3.ebuild?r1=1.1&r2=1.2
44
45 Index: libdca-0.0.5-r3.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/libdca/libdca-0.0.5-r3.ebuild,v
48 retrieving revision 1.1
49 retrieving revision 1.2
50 diff -u -r1.1 -r1.2
51 --- libdca-0.0.5-r3.ebuild 28 Jul 2013 22:10:21 -0000 1.1
52 +++ libdca-0.0.5-r3.ebuild 29 Jul 2013 19:57:38 -0000 1.2
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libdca/libdca-0.0.5-r3.ebuild,v 1.1 2013/07/28 22:10:21 aballier Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdca/libdca-0.0.5-r3.ebuild,v 1.2 2013/07/29 19:57:38 aballier Exp $
58
59 EAPI=5
60 inherit autotools eutils flag-o-matic multilib multilib-minimal
61 @@ -38,6 +38,11 @@
62 $(use_enable debug) \
63 $(use_enable static-libs static) \
64 $(use_enable oss)
65 +
66 + # Those are thrown away afterwards, don't build them in the first place
67 + if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
68 + sed -i -e 's/ libao src//' Makefile || die
69 + fi
70 }
71
72 multilib_src_compile() {