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/portaudio: portaudio-19_pre20111121-r1.ebuild ChangeLog
Date: Tue, 30 Jul 2013 00:00:03
Message-Id: 20130729235957.7904121710@flycatcher.gentoo.org
1 aballier 13/07/29 23:59:57
2
3 Modified: ChangeLog
4 Added: portaudio-19_pre20111121-r1.ebuild
5 Log:
6 Migrate to multilib, by Michał Górny in bug #468706
7
8 (Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.95 media-libs/portaudio/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/portaudio/ChangeLog?rev=1.95&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/portaudio/ChangeLog?rev=1.95&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/portaudio/ChangeLog?r1=1.94&r2=1.95
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/portaudio/ChangeLog,v
20 retrieving revision 1.94
21 retrieving revision 1.95
22 diff -u -r1.94 -r1.95
23 --- ChangeLog 4 Jan 2013 18:46:03 -0000 1.94
24 +++ ChangeLog 29 Jul 2013 23:59:57 -0000 1.95
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/portaudio
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/ChangeLog,v 1.94 2013/01/04 18:46:03 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/ChangeLog,v 1.95 2013/07/29 23:59:57 aballier Exp $
30 +
31 +*portaudio-19_pre20111121-r1 (29 Jul 2013)
32 +
33 + 29 Jul 2013; Alexis Ballier <aballier@g.o>
34 + +portaudio-19_pre20111121-r1.ebuild:
35 + Migrate to multilib, by Michał Górny in bug #468706
36
37 04 Jan 2013; Tim Harder <radhermit@g.o>
38 -portaudio-19_pre20110326.ebuild:
39
40
41
42 1.1 media-libs/portaudio/portaudio-19_pre20111121-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/portaudio/portaudio-19_pre20111121-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/portaudio/portaudio-19_pre20111121-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: portaudio-19_pre20111121-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/portaudio/portaudio-19_pre20111121-r1.ebuild,v 1.1 2013/07/29 23:59:57 aballier Exp $
52
53 EAPI=5
54
55 AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
56 inherit autotools-multilib
57
58 MY_P=pa_stable_v${PV/pre}
59
60 DESCRIPTION="A free, cross-platform, open-source, audio I/O library"
61 HOMEPAGE="http://www.portaudio.com/"
62 SRC_URI="http://www.portaudio.com/archives/${MY_P}.tgz"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
67 IUSE="alsa +cxx debug jack oss static-libs"
68
69 RDEPEND="alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
70 jack? ( media-sound/jack-audio-connection-kit[${MULTILIB_USEDEP}] )
71 abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r8
72 !app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
73 DEPEND="${RDEPEND}
74 virtual/pkgconfig"
75
76 S=${WORKDIR}/${PN}
77 DOCS=( README.txt )
78 HTML_DOCS=( index.html )
79
80 src_configure() {
81 local myeconfargs=(
82 $(use_enable debug debug-output)
83 $(use_enable cxx)
84 $(use_with alsa)
85 $(use_with jack)
86 $(use_with oss)
87 )
88
89 autotools-multilib_src_configure
90 }
91
92 src_compile() {
93 autotools-multilib_src_compile lib/libportaudio.la
94 autotools-multilib_src_compile
95 }