diff options
Diffstat (limited to 'media-libs/smpeg2')
-rw-r--r-- | media-libs/smpeg2/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/smpeg2/smpeg2-2.0.0-r2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/media-libs/smpeg2/ChangeLog b/media-libs/smpeg2/ChangeLog index dbc119835092..6faeb598cc6a 100644 --- a/media-libs/smpeg2/ChangeLog +++ b/media-libs/smpeg2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/smpeg2 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg2/ChangeLog,v 1.5 2015/01/22 08:24:50 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg2/ChangeLog,v 1.6 2015/01/29 17:58:22 mgorny Exp $ + + 29 Jan 2015; Michał Górny <mgorny@gentoo.org> smpeg2-2.0.0-r2.ebuild: + Switch to CPU_FLAGS_X86. 22 Jan 2015; Michael Sterrett <mr_bones_@gentoo.org> -smpeg2-2.0.0-r1.ebuild, smpeg2-2.0.0-r2.ebuild: diff --git a/media-libs/smpeg2/smpeg2-2.0.0-r2.ebuild b/media-libs/smpeg2/smpeg2-2.0.0-r2.ebuild index f8c172371164..7f88a1a13a9b 100644 --- a/media-libs/smpeg2/smpeg2-2.0.0-r2.ebuild +++ b/media-libs/smpeg2/smpeg2-2.0.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg2/smpeg2-2.0.0-r2.ebuild,v 1.3 2015/01/22 08:24:50 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/smpeg2/smpeg2-2.0.0-r2.ebuild,v 1.4 2015/01/29 17:58:22 mgorny Exp $ EAPI=5 inherit eutils toolchain-funcs autotools multilib-minimal @@ -13,7 +13,7 @@ SRC_URI="http://dev.gentoo.org/~hasufell/distfiles/${MY_P}.tar.bz2" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="debug mmx static-libs" +IUSE="debug cpu_flags_x86_mmx static-libs" DEPEND=">=media-libs/libsdl2-2.0.1-r1[${MULTILIB_USEDEP}]" RDEPEND="${DEPEND}" @@ -41,7 +41,7 @@ multilib_src_configure() { --disable-rpath \ --enable-debug \ --disable-sdltest \ - $(use_enable mmx) \ + $(use_enable cpu_flags_x86_mmx mmx) \ $(use_enable debug assertions) } |