From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1MXGTI-0006Jw-Sb for garchives@archives.gentoo.org; Sat, 01 Aug 2009 15:26:09 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D52DE01E3; Sat, 1 Aug 2009 15:26:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3DC34E01E3 for ; Sat, 1 Aug 2009 15:26:08 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id E5F5C66AB0 for ; Sat, 1 Aug 2009 15:26:07 +0000 (UTC) Received: from ssuominen by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1MXGTH-0005vK-AV for gentoo-commits@lists.gentoo.org; Sat, 01 Aug 2009 15:26:07 +0000 From: "Samuli Suominen (ssuominen)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ssuominen@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/alsa-plugins: alsa-plugins-1.0.20.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: alsa-plugins-1.0.20.ebuild ChangeLog X-VCS-Directories: media-plugins/alsa-plugins X-VCS-Committer: ssuominen X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Message-Id: Sender: Samuli Suominen Date: Sat, 01 Aug 2009 15:26:07 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 89ceccfe-c1ed-4b8c-ba07-a3b981f92013 X-Archives-Hash: 487b1d1cb79fcfc2fce2451a0c994694 ssuominen 09/08/01 15:26:07 Modified: alsa-plugins-1.0.20.ebuild ChangeLog Log: Fix automagic media-libs/speex dep. wrt #278352. (Portage version: 2.2_rc33/cvs/Linux x86_64) Revision Changes Path 1.3 media-plugins/alsa-plugins/alsa-plugins-1.0.20.ebuil= d file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa= -plugins/alsa-plugins-1.0.20.ebuild?rev=3D1.3&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa= -plugins/alsa-plugins-1.0.20.ebuild?rev=3D1.3&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa= -plugins/alsa-plugins-1.0.20.ebuild?r1=3D1.2&r2=3D1.3 Index: alsa-plugins-1.0.20.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugins= -1.0.20.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- alsa-plugins-1.0.20.ebuild 21 May 2009 12:42:41 -0000 1.2 +++ alsa-plugins-1.0.20.ebuild 1 Aug 2009 15:26:07 -0000 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugi= ns-1.0.20.ebuild,v 1.2 2009/05/21 12:42:41 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/alsa-plugi= ns-1.0.20.ebuild,v 1.3 2009/08/01 15:26:07 ssuominen Exp $ =20 EAPI=3D2 =20 @@ -42,7 +42,10 @@ "${S}/pulse/Makefile.am" =20 # Bug #256119 - epatch "${FILESDIR}/${PN}-1.0.19-missing-avutil.patch" + epatch "${FILESDIR}"/${PN}-1.0.19-missing-avutil.patch + + # Bug #278352 + epatch "${FILESDIR}"/${P}-automagic.patch =20 eautoreconf } @@ -50,14 +53,21 @@ src_configure() { use debug || append-flags -DNDEBUG =20 + local myspeex + + if use speex; then + myspeex=3Dlib + else + myspeex=3Dno + fi + econf \ + --disable-dependency-tracking \ $(use_enable ffmpeg avcodec) \ $(use_enable jack) \ $(use_enable libsamplerate samplerate) \ $(use_enable pulseaudio) \ - $(use_with speex speex lib) \ - --disable-dependency-tracking \ - || die "econf failed" + --with-speex=3D${myspeex} } =20 src_install() { 1.105 media-plugins/alsa-plugins/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa= -plugins/ChangeLog?rev=3D1.105&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa= -plugins/ChangeLog?rev=3D1.105&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/alsa= -plugins/ChangeLog?r1=3D1.104&r2=3D1.105 Index: ChangeLog =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,v retrieving revision 1.104 retrieving revision 1.105 diff -u -r1.104 -r1.105 --- ChangeLog 2 Jul 2009 19:16:09 -0000 1.104 +++ ChangeLog 1 Aug 2009 15:26:07 -0000 1.105 @@ -1,6 +1,10 @@ # ChangeLog for media-plugins/alsa-plugins # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,= v 1.104 2009/07/02 19:16:09 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/alsa-plugins/ChangeLog,= v 1.105 2009/08/01 15:26:07 ssuominen Exp $ + + 01 Aug 2009; Samuli Suominen + alsa-plugins-1.0.20.ebuild, +files/alsa-plugins-1.0.20-automagic.patch= : + Fix automagic media-libs/speex dep. wrt #278352. =20 02 Jul 2009; Markus Meier alsa-plugins-1.0.19.ebui= ld: amd64 stable, bug #272682