Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: ChangeLog alsa-plugins-1.0.19.ebuild
Date: Mon, 19 Jan 2009 16:20:30
Message-Id: E1LOwqm-0005NY-AF@stork.gentoo.org
1 chainsaw 09/01/19 16:19:44
2
3 Modified: ChangeLog
4 Added: alsa-plugins-1.0.19.ebuild
5 Log:
6 Version bump. Drop the epatch/eautoreconf/elibtoolize as the Flameeyes-magic made it upstream.
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.91 media-plugins/alsa-plugins/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/ChangeLog?rev=1.91&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/ChangeLog?rev=1.91&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/ChangeLog?r1=1.90&r2=1.91
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
19 retrieving revision 1.90
20 retrieving revision 1.91
21 diff -u -r1.90 -r1.91
22 --- ChangeLog 22 Dec 2008 16:31:44 -0000 1.90
23 +++ ChangeLog 19 Jan 2009 16:19:44 -0000 1.91
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-plugins/alsa-plugins
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.90 2008/12/22 16:31:44 armin76 Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.91 2009/01/19 16:19:44 chainsaw Exp $
30 +
31 +*alsa-plugins-1.0.19 (19 Jan 2009)
32 +
33 + 19 Jan 2009; <chainsaw@g.o> +alsa-plugins-1.0.19.ebuild:
34 + Version bump. Drop the epatch/eautoreconf/elibtoolize as the
35 + Flameeyes-magic made it upstream.
36
37 22 Dec 2008; Raúl Porcel <armin76@g.o>
38 alsa-plugins-1.0.17-r1.ebuild:
39
40
41
42 1.1 media-plugins/alsa-plugins/alsa-plugins-1.0.19.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.19.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.19.ebuild?rev=1.1&content-type=text/plain
46
47 Index: alsa-plugins-1.0.19.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.19.ebuild,v 1.1 2009/01/19 16:19:44 chainsaw Exp $
52
53 EAPI=2
54
55 MY_P="${P/_/}"
56
57 DESCRIPTION="ALSA extra plugins"
58 HOMEPAGE="http://www.alsa-project.org/"
59 SRC_URI="mirror://alsaproject/plugins/${MY_P}.tar.bz2"
60
61 LICENSE="GPL-2 LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
64 IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"
65
66 RDEPEND=">=media-libs/alsa-lib-${PV}
67 ffmpeg? ( media-video/ffmpeg
68 media-libs/alsa-lib[alsa_pcm_plugins_rate] )
69 jack? ( >=media-sound/jack-audio-connection-kit-0.98 )
70 libsamplerate? (
71 media-libs/libsamplerate
72 media-libs/alsa-lib[alsa_pcm_plugins_rate] )
73 pulseaudio? ( media-sound/pulseaudio )
74 speex? ( media-libs/speex
75 media-libs/alsa-lib[alsa_pcm_plugins_rate] )
76 !media-plugins/alsa-jack"
77
78 DEPEND="${RDEPEND}
79 dev-util/pkgconfig"
80
81 S="${WORKDIR}/${MY_P}"
82
83 src_prepare() {
84 # For some reasons the polyp/pulse plugin does fail with alsaplayer with a
85 # failed assert. As the code works just fine with asserts disabled, for now
86 # disable them waiting for a better solution.
87 sed -i -e '/AM_CFLAGS/s:-Wall:-DNDEBUG -Wall:' \
88 "${S}/pulse/Makefile.am"
89 }
90
91 src_configure() {
92 use debug || append-flags -DNDEBUG
93
94 econf \
95 $(use_enable ffmpeg avcodec) \
96 $(use_enable jack) \
97 $(use_enable libsamplerate samplerate) \
98 $(use_enable pulseaudio) \
99 $(use_with speex speex lib) \
100 --disable-dependency-tracking \
101 || die "econf failed"
102 }
103
104 src_install() {
105 emake DESTDIR="${D}" install
106
107 cd "${S}/doc"
108 dodoc upmix.txt vdownmix.txt README-pcm-oss
109 use jack && dodoc README-jack
110 use libsamplerate && dodoc samplerate.txt
111 use pulseaudio && dodoc README-pulse
112 use ffmpeg && dodoc lavcrate.txt a52.txt
113 }