diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-06-25 18:27:50 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-06-25 18:27:50 +0000 |
commit | 3b9faf7d7dea61ce7a657e57f06a00dc15547b6d (patch) | |
tree | 2edab65bdfe3bbbc3d0441880d2d053e78ecc524 /media-libs/libvpx | |
parent | Version bump (bug #474756). (diff) | |
download | gentoo-2-3b9faf7d7dea61ce7a657e57f06a00dc15547b6d.tar.gz gentoo-2-3b9faf7d7dea61ce7a657e57f06a00dc15547b6d.tar.bz2 gentoo-2-3b9faf7d7dea61ce7a657e57f06a00dc15547b6d.zip |
dont build tests if they will not be ran
(Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/libvpx')
-rw-r--r-- | media-libs/libvpx/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/libvpx/libvpx-9999.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/media-libs/libvpx/ChangeLog b/media-libs/libvpx/ChangeLog index fa46e24de2b3..0ec41f356d05 100644 --- a/media-libs/libvpx/ChangeLog +++ b/media-libs/libvpx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/libvpx # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.86 2013/06/25 17:38:42 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.87 2013/06/25 18:27:50 aballier Exp $ + + 25 Jun 2013; Alexis Ballier <aballier@gentoo.org> libvpx-9999.ebuild: + dont build tests if they will not be ran 25 Jun 2013; Alexis Ballier <aballier@gentoo.org> libvpx-9999.ebuild: it builds fine now with -ggdb3, drop the replace-flags diff --git a/media-libs/libvpx/libvpx-9999.ebuild b/media-libs/libvpx/libvpx-9999.ebuild index 9e22f476cf3b..8c97c9084c72 100644 --- a/media-libs/libvpx/libvpx-9999.ebuild +++ b/media-libs/libvpx/libvpx-9999.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-libs/libvpx/libvpx-9999.ebuild,v 1.37 2013/06/25 17:38:42 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v 1.38 2013/06/25 18:27:50 aballier Exp $ EAPI=4 inherit multilib toolchain-funcs multilib-minimal @@ -23,7 +23,7 @@ HOMEPAGE="http://www.webmproject.org" LICENSE="BSD" SLOT="0" -IUSE="altivec doc mmx postproc sse sse2 sse3 ssse3 sse4_1 static-libs +threads" +IUSE="altivec doc mmx postproc sse sse2 sse3 ssse3 sse4_1 static-libs test +threads" RDEPEND="abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224 )" DEPEND="abi_x86_32? ( dev-lang/yasm ) @@ -90,6 +90,7 @@ multilib_src_configure() { $(use_enable sse4_1) \ $(use_enable ssse3) \ $(use_enable static-libs static) \ + $(use_enable test unit-tests) \ $(use_enable threads multithread) \ ${myconf} \ || die |