Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libao: ChangeLog libao-1.0.0-r1.ebuild
Date: Mon, 26 Jul 2010 08:06:04
Message-Id: 20100726080602.C0D512CE14@corvid.gentoo.org
1 ssuominen 10/07/26 08:06:02
2
3 Modified: ChangeLog
4 Added: libao-1.0.0-r1.ebuild
5 Log:
6 Fix pulseaudio module wrt #329737 by Reuben Martin. Remove -O20 from upstream default CFLAGS.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.93 media-libs/libao/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libao/ChangeLog?rev=1.93&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libao/ChangeLog?rev=1.93&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libao/ChangeLog?r1=1.92&r2=1.93
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libao/ChangeLog,v
19 retrieving revision 1.92
20 retrieving revision 1.93
21 diff -u -r1.92 -r1.93
22 --- ChangeLog 25 Jul 2010 15:30:09 -0000 1.92
23 +++ ChangeLog 26 Jul 2010 08:06:02 -0000 1.93
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-libs/libao
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libao/ChangeLog,v 1.92 2010/07/25 15:30:09 klausman Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libao/ChangeLog,v 1.93 2010/07/26 08:06:02 ssuominen Exp $
29 +
30 +*libao-1.0.0-r1 (26 Jul 2010)
31 +
32 + 26 Jul 2010; Samuli Suominen <ssuominen@g.o>
33 + +libao-1.0.0-r1.ebuild, +files/libao-1.0.0-pulseaudio.patch:
34 + Fix pulseaudio module wrt #329737 by Reuben Martin. Remove -O20 from
35 + upstream default CFLAGS.
36
37 25 Jul 2010; Tobias Klausmann <klausman@g.o> libao-1.0.0.ebuild:
38 Stable on alpha, bug #324265
39
40
41
42 1.1 media-libs/libao/libao-1.0.0-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libao/libao-1.0.0-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libao/libao-1.0.0-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libao-1.0.0-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/libao/libao-1.0.0-r1.ebuild,v 1.1 2010/07/26 08:06:02 ssuominen Exp $
52
53 EAPI=2
54 inherit eutils libtool
55
56 DESCRIPTION="the audio output library"
57 HOMEPAGE="http://www.xiph.org/ao/"
58 SRC_URI="http://downloads.xiph.org/releases/ao/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
63 IUSE="alsa nas mmap pulseaudio static-libs"
64
65 RDEPEND="alsa? ( media-libs/alsa-lib )
66 nas? ( media-libs/nas )
67 pulseaudio? ( media-sound/pulseaudio )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${P}-pulseaudio.patch
73 sed -i -e 's:-O20::' configure || die
74 elibtoolize
75 }
76
77 src_configure() {
78 econf \
79 $(use_enable static-libs static) \
80 --disable-dependency-tracking \
81 --disable-esd \
82 $(use_enable alsa alsa) \
83 $(use_enable mmap alsa-mmap) \
84 --disable-arts \
85 $(use_enable nas) \
86 $(use_enable pulseaudio pulse)
87 }
88
89 src_install() {
90 emake DESTDIR="${D}" install || die
91 dodoc AUTHORS CHANGES README TODO
92 }