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/openal: ChangeLog openal-1.15.1-r1.ebuild
Date: Tue, 31 Dec 2013 12:05:41
Message-Id: 20131231120537.E51C92004C@flycatcher.gentoo.org
1 aballier 13/12/31 12:05:37
2
3 Modified: ChangeLog openal-1.15.1-r1.ebuild
4 Log:
5 properly disable alstream if non native abi; reported by Michael Mair-Keimberger (iamnr3) in bug #484060
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
8
9 Revision Changes Path
10 1.171 media-libs/openal/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openal/ChangeLog?rev=1.171&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openal/ChangeLog?rev=1.171&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openal/ChangeLog?r1=1.170&r2=1.171
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/openal/ChangeLog,v
19 retrieving revision 1.170
20 retrieving revision 1.171
21 diff -u -r1.170 -r1.171
22 --- ChangeLog 30 Dec 2013 07:44:35 -0000 1.170
23 +++ ChangeLog 31 Dec 2013 12:05:37 -0000 1.171
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-libs/openal
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/ChangeLog,v 1.170 2013/12/30 07:44:35 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/ChangeLog,v 1.171 2013/12/31 12:05:37 aballier Exp $
29 +
30 + 31 Dec 2013; Alexis Ballier <aballier@g.o> openal-1.15.1-r1.ebuild:
31 + properly disable alstream if non native abi; reported by Michael
32 + Mair-Keimberger (iamnr3) in bug #484060
33
34 30 Dec 2013; Alexis Ballier <aballier@g.o> openal-1.15.1-r1.ebuild:
35 fix blocker on emul-sdl abi_x86_32 useflag
36
37
38
39 1.5 media-libs/openal/openal-1.15.1-r1.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openal/openal-1.15.1-r1.ebuild?rev=1.5&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openal/openal-1.15.1-r1.ebuild?rev=1.5&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/openal/openal-1.15.1-r1.ebuild?r1=1.4&r2=1.5
44
45 Index: openal-1.15.1-r1.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-libs/openal/openal-1.15.1-r1.ebuild,v
48 retrieving revision 1.4
49 retrieving revision 1.5
50 diff -u -r1.4 -r1.5
51 --- openal-1.15.1-r1.ebuild 30 Dec 2013 07:44:35 -0000 1.4
52 +++ openal-1.15.1-r1.ebuild 31 Dec 2013 12:05:37 -0000 1.5
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/openal/openal-1.15.1-r1.ebuild,v 1.4 2013/12/30 07:44:35 aballier Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-libs/openal/openal-1.15.1-r1.ebuild,v 1.5 2013/12/31 12:05:37 aballier Exp $
58
59 EAPI=5
60 inherit cmake-multilib
61 @@ -32,17 +32,21 @@
62 DOCS="alsoftrc.sample env-vars.txt hrtf.txt README"
63
64 src_configure() {
65 - local mycmakeargs=(
66 - $(cmake-utils_use alsa)
67 - $(cmake-utils_use coreaudio)
68 - $(cmake-utils_use neon)
69 - $(cmake-utils_use oss)
70 - $(cmake-utils_use portaudio)
71 - $(cmake-utils_use pulseaudio)
72 - $(cmake-utils_use sse)
73 + my_configure() {
74 + local mycmakeargs=(
75 + $(cmake-utils_use alsa)
76 + $(cmake-utils_use coreaudio)
77 + $(cmake-utils_use neon)
78 + $(cmake-utils_use oss)
79 + $(cmake-utils_use portaudio)
80 + $(cmake-utils_use pulseaudio)
81 + $(cmake-utils_use sse)
82 )
83
84 - multilib_is_native_abi && mymakeargs+=( $(cmake-utils_use alstream EXAMPLES) )
85 + multilib_is_native_abi && mycmakeargs+=( $(cmake-utils_use alstream EXAMPLES) )
86
87 - cmake-multilib_src_configure
88 + cmake-utils_src_configure
89 + }
90 +
91 + multilib_parallel_foreach_abi my_configure
92 }