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.16_rc1.ebuild
Date: Thu, 31 Jan 2008 14:38:22
Message-Id: E1JKaYV-0003co-Jp@stork.gentoo.org
1 chainsaw 08/01/31 14:38:19
2
3 Modified: ChangeLog
4 Added: alsa-plugins-1.0.16_rc1.ebuild
5 Log:
6 Version bump, for bug #207427.
7 (Portage version: 2.1.4)
8
9 Revision Changes Path
10 1.66 media-plugins/alsa-plugins/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/ChangeLog?rev=1.66&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/ChangeLog?rev=1.66&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/ChangeLog?r1=1.65&r2=1.66
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v
19 retrieving revision 1.65
20 retrieving revision 1.66
21 diff -u -r1.65 -r1.66
22 --- ChangeLog 24 Oct 2007 20:16:21 -0000 1.65
23 +++ ChangeLog 31 Jan 2008 14:38:19 -0000 1.66
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-plugins/alsa-plugins
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.65 2007/10/24 20:16:21 armin76 Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v 1.66 2008/01/31 14:38:19 chainsaw Exp $
30 +
31 +*alsa-plugins-1.0.16_rc1 (31 Jan 2008)
32 +
33 + 31 Jan 2008; Tony Vroon <chainsaw@g.o>
34 + +alsa-plugins-1.0.16_rc1.ebuild:
35 + Version bump, for bug #207427.
36
37 24 Oct 2007; Raúl Porcel <armin76@g.o> alsa-plugins-1.0.14.ebuild:
38 alpha/ia64 stable wrt #189155
39
40
41
42 1.1 media-plugins/alsa-plugins/alsa-plugins-1.0.16_rc1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.16_rc1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins-1.0.16_rc1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: alsa-plugins-1.0.16_rc1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 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.16_rc1.ebuild,v 1.1 2008/01/31 14:38:19 chainsaw Exp $
52
53 WANT_AUTOMAKE=latest
54 WANT_AUTOCONF=latest
55
56 inherit libtool autotools eutils flag-o-matic
57
58 MY_P="${P/_/}"
59
60 DESCRIPTION="ALSA extra plugins"
61 HOMEPAGE="http://www.alsa-project.org/"
62 SRC_URI="mirror://alsaproject/plugins/${MY_P}.tar.bz2"
63
64 LICENSE="GPL-2 LGPL-2.1"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
67 IUSE="debug ffmpeg jack libsamplerate pulseaudio speex"
68
69 RDEPEND=">=media-libs/alsa-lib-${PV}
70 ffmpeg? ( media-video/ffmpeg )
71 jack? ( >=media-sound/jack-audio-connection-kit-0.98 )
72 libsamplerate? ( media-libs/libsamplerate )
73 pulseaudio? ( media-sound/pulseaudio )
74 speex? ( media-libs/speex )
75 !media-plugins/alsa-jack"
76
77 DEPEND="${RDEPEND}
78 dev-util/pkgconfig"
79
80 S="${WORKDIR}/${MY_P}"
81
82 src_unpack() {
83 unpack ${A}
84 cd "${S}"
85
86 epatch "${FILESDIR}/${PN}-1.0.14_rc1-automagic.patch"
87 epatch "${FILESDIR}/${PN}-1.0.14_rc1-init-ffmpeg.patch"
88
89 # For some reasons the polyp/pulse plugin does fail with alsaplayer with a
90 # failed assert. As the code works just fine with asserts disabled, for now
91 # disable them waiting for a better solution.
92 sed -i -e '/AM_CFLAGS/s:-Wall:-DNDEBUG -Wall:' \
93 "${S}/pulse/Makefile.am"
94
95 eautoreconf
96 elibtoolize
97 }
98
99 src_compile() {
100 use debug || append-flags -DNDEBUG
101
102 # D-Bus is used for Maemo SDK, that standing to the
103 # changelog is related to n770... disable it until
104 # someone ask for it explicitely, to be on the safe
105 # side.
106 econf \
107 $(use_enable ffmpeg avcodec) \
108 $(use_enable jack) \
109 $(use_enable libsamplerate samplerate) \
110 $(use_enable pulseaudio) \
111 $(use_with speex speex lib) \
112 --disable-dbus \
113 --disable-dependency-tracking \
114 || die "econf failed"
115 emake || die "emake failed"
116 }
117
118 src_install() {
119 emake DESTDIR="${D}" install
120
121 cd "${S}/doc"
122 dodoc upmix.txt vdownmix.txt README-pcm-oss
123 use jack && dodoc README-jack
124 use libsamplerate && dodoc samplerate.txt
125 use pulseaudio && dodoc README-pulse
126 use ffmpeg && dodoc lavcrate.txt a52.txt
127 }
128
129
130
131 --
132 gentoo-commits@l.g.o mailing list