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-0.8.8.ebuild
Date: Mon, 01 Jun 2009 14:31:26
Message-Id: E1MB8Xr-00084R-QH@stork.gentoo.org
1 ssuominen 09/06/01 14:31:23
2
3 Modified: ChangeLog libao-0.8.8.ebuild
4 Log:
5 Remove arts and esound support.
6 (Portage version: 2.1.6.13/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.83 media-libs/libao/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libao/ChangeLog?rev=1.83&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libao/ChangeLog?rev=1.83&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libao/ChangeLog?r1=1.82&r2=1.83
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-libs/libao/ChangeLog,v
18 retrieving revision 1.82
19 retrieving revision 1.83
20 diff -u -r1.82 -r1.83
21 --- ChangeLog 26 May 2008 15:30:46 -0000 1.82
22 +++ ChangeLog 1 Jun 2009 14:31:23 -0000 1.83
23 @@ -1,6 +1,9 @@
24 # ChangeLog for media-libs/libao
25 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libao/ChangeLog,v 1.82 2008/05/26 15:30:46 drac Exp $
27 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libao/ChangeLog,v 1.83 2009/06/01 14:31:23 ssuominen Exp $
29 +
30 + 01 Jun 2009; Samuli Suominen <ssuominen@g.o> libao-0.8.8.ebuild:
31 + Remove arts and esound support.
32
33 26 May 2008; Samuli Suominen <drac@g.o> libao-0.8.6-r3.ebuild,
34 libao-0.8.8.ebuild:
35
36
37
38 1.9 media-libs/libao/libao-0.8.8.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libao/libao-0.8.8.ebuild?rev=1.9&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libao/libao-0.8.8.ebuild?rev=1.9&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libao/libao-0.8.8.ebuild?r1=1.8&r2=1.9
43
44 Index: libao-0.8.8.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/media-libs/libao/libao-0.8.8.ebuild,v
47 retrieving revision 1.8
48 retrieving revision 1.9
49 diff -u -r1.8 -r1.9
50 --- libao-0.8.8.ebuild 26 May 2008 15:30:46 -0000 1.8
51 +++ libao-0.8.8.ebuild 1 Jun 2009 14:31:23 -0000 1.9
52 @@ -1,7 +1,8 @@
53 -# Copyright 1999-2008 Gentoo Foundation
54 +# Copyright 1999-2009 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libao/libao-0.8.8.ebuild,v 1.8 2008/05/26 15:30:46 drac Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libao/libao-0.8.8.ebuild,v 1.9 2009/06/01 14:31:23 ssuominen Exp $
58
59 +EAPI=2
60 inherit eutils libtool
61
62 DESCRIPTION="the audio output library"
63 @@ -11,33 +12,29 @@
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd"
67 -IUSE="alsa arts doc esd nas mmap pulseaudio"
68 +IUSE="alsa doc nas mmap pulseaudio"
69
70 RDEPEND="alsa? ( media-libs/alsa-lib )
71 - arts? ( kde-base/arts )
72 - esd? ( >=media-sound/esound-0.2.22 )
73 nas? ( media-libs/nas )
74 pulseaudio? ( media-sound/pulseaudio )"
75 DEPEND="${RDEPEND}
76 - dev-util/pkgconfig
77 - !media-plugins/libao-pulse"
78 + dev-util/pkgconfig"
79
80 -src_unpack() {
81 - unpack ${A}
82 - cd "${S}"
83 +src_prepare() {
84 epatch "${FILESDIR}"/${P}-alsa09-buffertime-milliseconds.patch
85 elibtoolize
86 }
87
88 -src_compile() {
89 - econf --enable-shared --enable-static \
90 +src_configure() {
91 + econf \
92 + --enable-shared \
93 + --disable-static \
94 $(use_enable alsa alsa09) \
95 $(use_enable mmap alsa09-mmap) \
96 - $(use_enable arts) \
97 - $(use_enable esd) \
98 + --disable-arts \
99 + --disable-esd \
100 $(use_enable nas) \
101 $(use_enable pulseaudio pulse)
102 - emake || die "emake failed."
103 }
104
105 src_install () {