diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-08-12 15:27:04 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-08-12 15:27:04 +0000 |
commit | 4f90cfacf1157dc610cf5c8a415deaa8bde3e8a9 (patch) | |
tree | 75b759fc18a1322de3ee5e26901fa56a2dca5b89 /media-libs | |
parent | Cleaned 2.33 - pre-release of 3.0 (diff) | |
download | gentoo-2-4f90cfacf1157dc610cf5c8a415deaa8bde3e8a9.tar.gz gentoo-2-4f90cfacf1157dc610cf5c8a415deaa8bde3e8a9.tar.bz2 gentoo-2-4f90cfacf1157dc610cf5c8a415deaa8bde3e8a9.zip |
fix static-libs inverted logic
(Portage version: 2.2.0_alpha196/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/x264/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/x264/x264-0.0.20130731.ebuild | 4 | ||||
-rw-r--r-- | media-libs/x264/x264-9999.ebuild | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/media-libs/x264/ChangeLog b/media-libs/x264/ChangeLog index 11836ec1b33c..4af905414b01 100644 --- a/media-libs/x264/ChangeLog +++ b/media-libs/x264/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/x264 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v 1.96 2013/08/01 17:41:00 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/ChangeLog,v 1.97 2013/08/12 15:27:04 aballier Exp $ + + 12 Aug 2013; Alexis Ballier <aballier@gentoo.org> x264-0.0.20130731.ebuild, + x264-9999.ebuild: + fix static-libs inverted logic *x264-0.0.20130731 (01 Aug 2013) diff --git a/media-libs/x264/x264-0.0.20130731.ebuild b/media-libs/x264/x264-0.0.20130731.ebuild index 123e00c533e2..480268ac815f 100644 --- a/media-libs/x264/x264-0.0.20130731.ebuild +++ b/media-libs/x264/x264-0.0.20130731.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/x264/x264-0.0.20130731.ebuild,v 1.1 2013/08/01 17:41:00 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-0.0.20130731.ebuild,v 1.2 2013/08/12 15:27:04 aballier Exp $ EAPI=5 @@ -64,7 +64,7 @@ multilib_src_configure() { --host="${CHOST}" \ $(usex 10bit "--bit-depth=10" "") \ $(usex interlaced "" "--disable-interlaced") \ - $(usex static-libs "" "--enable-static") \ + $(usex static-libs "--enable-static" "") \ $(usex threads "" "--disable-thread") \ ${asm_conf} || die } diff --git a/media-libs/x264/x264-9999.ebuild b/media-libs/x264/x264-9999.ebuild index 8d738925d1fb..270dbffa9865 100644 --- a/media-libs/x264/x264-9999.ebuild +++ b/media-libs/x264/x264-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/x264/x264-9999.ebuild,v 1.14 2013/08/01 17:24:02 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/x264/x264-9999.ebuild,v 1.15 2013/08/12 15:27:04 aballier Exp $ EAPI=5 @@ -64,7 +64,7 @@ multilib_src_configure() { --host="${CHOST}" \ $(usex 10bit "--bit-depth=10" "") \ $(usex interlaced "" "--disable-interlaced") \ - $(usex static-libs "" "--enable-static") \ + $(usex static-libs "--enable-static" "") \ $(usex threads "" "--disable-thread") \ ${asm_conf} || die } |