diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-02-25 21:53:52 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-02-25 21:53:52 +0000 |
commit | 2a2240db4e0b0885aba23f02104f56712bfa3af1 (patch) | |
tree | 6b84d15e836e5741619661aca65ea292ff40ee92 /media-libs | |
parent | Stable for amd64, wrt bug #405781 (diff) | |
download | gentoo-2-2a2240db4e0b0885aba23f02104f56712bfa3af1.tar.gz gentoo-2-2a2240db4e0b0885aba23f02104f56712bfa3af1.tar.bz2 gentoo-2-2a2240db4e0b0885aba23f02104f56712bfa3af1.zip |
fix enabling of vdpau, by gionnico in bug #396113
(Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/mlt/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/mlt/mlt-0.7.6.ebuild | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/media-libs/mlt/ChangeLog b/media-libs/mlt/ChangeLog index bd5a9b41c516..51d5d59c1b82 100644 --- a/media-libs/mlt/ChangeLog +++ b/media-libs/mlt/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/mlt # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/mlt/ChangeLog,v 1.80 2012/02/25 21:44:35 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/mlt/ChangeLog,v 1.81 2012/02/25 21:53:52 aballier Exp $ + + 25 Feb 2012; Alexis Ballier <aballier@gentoo.org> mlt-0.7.6.ebuild: + fix enabling of vdpau, by gionnico in bug #396113 25 Feb 2012; Alexis Ballier <aballier@gentoo.org> mlt-0.7.6.ebuild: depend on libexif with qt4 too as, again, there is no way to disable it, this diff --git a/media-libs/mlt/mlt-0.7.6.ebuild b/media-libs/mlt/mlt-0.7.6.ebuild index eafc1d03d7b2..c2ef043f4e23 100644 --- a/media-libs/mlt/mlt-0.7.6.ebuild +++ b/media-libs/mlt/mlt-0.7.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/mlt/mlt-0.7.6.ebuild,v 1.6 2012/02/25 21:44:35 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/mlt/mlt-0.7.6.ebuild,v 1.7 2012/02/25 21:53:52 aballier Exp $ EAPI=4 PYTHON_DEPEND="python? 2:2.6" @@ -71,8 +71,6 @@ src_prepare() { } src_configure() { - use vdpau || export MLT_NO_VDPAU=1 - tc-export CC CXX local myconf="--enable-gpl @@ -89,6 +87,7 @@ src_configure() { $(use_enable frei0r) $(use_enable melt) $(use_enable libsamplerate resample) + $(use vdpau && echo ' --avformat-vdpau') $(use_enable xml) $(use_enable xine) $(use_enable kde kdenlive) |