diff options
author | Andreas Schuerch <nativemad@gentoo.org> | 2013-07-25 19:18:16 +0000 |
---|---|---|
committer | Andreas Schuerch <nativemad@gentoo.org> | 2013-07-25 19:18:16 +0000 |
commit | ca29a4109b37eea34e1c8f9db60c7fa5cf861c0e (patch) | |
tree | 22d2708373a2d3c362585aea5ec5cea950a7bd90 /media-sound/ardour | |
parent | Added lost json[generic] depend. Bug #475490 by siebz0r. (diff) | |
download | gentoo-2-ca29a4109b37eea34e1c8f9db60c7fa5cf861c0e.tar.gz gentoo-2-ca29a4109b37eea34e1c8f9db60c7fa5cf861c0e.tar.bz2 gentoo-2-ca29a4109b37eea34e1c8f9db60c7fa5cf861c0e.zip |
Removed the curl useflag for now. See bug 478046. Thanks Mike Limansky for reporting.
(Portage version: 2.1.12.2/cvs/Linux i686, signed Manifest commit with key C1DE54B2)
Diffstat (limited to 'media-sound/ardour')
-rw-r--r-- | media-sound/ardour/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/ardour/ardour-3.3-r1.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/media-sound/ardour/ChangeLog b/media-sound/ardour/ChangeLog index 45f4d2f43487..f47c9d26de87 100644 --- a/media-sound/ardour/ChangeLog +++ b/media-sound/ardour/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/ardour # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ardour/ChangeLog,v 1.117 2013/07/24 15:58:24 nativemad Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ardour/ChangeLog,v 1.118 2013/07/25 19:18:16 nativemad Exp $ + + 25 Jul 2013; Andreas Schuerch <nativemad@gentoo.org> ardour-3.3-r1.ebuild: + Removed the curl useflag for now. See bug 478046. Thanks Mike Limansky for + reporting. *ardour-3.3-r1 (24 Jul 2013) diff --git a/media-sound/ardour/ardour-3.3-r1.ebuild b/media-sound/ardour/ardour-3.3-r1.ebuild index f2377f95f261..65361a3c5196 100644 --- a/media-sound/ardour/ardour-3.3-r1.ebuild +++ b/media-sound/ardour/ardour-3.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ardour/ardour-3.3-r1.ebuild,v 1.1 2013/07/24 15:58:24 nativemad Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ardour/ardour-3.3-r1.ebuild,v 1.2 2013/07/25 19:18:16 nativemad Exp $ EAPI=5 inherit eutils flag-o-matic toolchain-funcs waf-utils @@ -16,7 +16,7 @@ SRC_URI="mirror://gentoo/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="3" KEYWORDS="~amd64 ~x86" -IUSE="altivec curl debug doc nls lv2 sse" +IUSE="altivec debug doc nls lv2 sse" RDEPEND="media-libs/aubio media-libs/liblo @@ -47,7 +47,7 @@ RDEPEND="media-libs/aubio virtual/libusb:0 dev-libs/boost >=media-libs/taglib-1.7 - curl? ( net-misc/curl ) + net-misc/curl lv2? ( >=media-libs/slv2-0.6.1 media-libs/lilv @@ -64,6 +64,7 @@ DEPEND="${RDEPEND} src_prepare() { epatch "${FILESDIR}"/${PN}-3.2-syslibs.patch + epatch "${FILESDIR}"/curlfix.patch sed 's/python/python2/' -i waf } @@ -78,7 +79,6 @@ src_configure() { $(use nls && echo "--nls" || echo "--no-nls") \ $(use debug && echo "--stl-debug") \ $((use altivec || use sse) && echo "--fpu-optimization" || echo "--no-fpu-optimization") \ - $(use curl || echo "--no-freesound") \ $(use doc && echo "--docs") } |