summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-01-28 21:59:38 +0000
committerMichał Górny <mgorny@gentoo.org>2015-01-28 21:59:38 +0000
commitafc82d04d0340af0282324dde331497bd144fdff (patch)
tree08c0e4141858b82a280ddb42cd87f8c37e0a9677 /games-strategy
parentSwitch to CPU_FLAGS_X86. (diff)
downloadgentoo-2-afc82d04d0340af0282324dde331497bd144fdff.tar.gz
gentoo-2-afc82d04d0340af0282324dde331497bd144fdff.tar.bz2
gentoo-2-afc82d04d0340af0282324dde331497bd144fdff.zip
Switch to CPU_FLAGS_X86.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'games-strategy')
-rw-r--r--games-strategy/megaglest/ChangeLog7
-rw-r--r--games-strategy/megaglest/megaglest-3.9.1-r1.ebuild12
2 files changed, 11 insertions, 8 deletions
diff --git a/games-strategy/megaglest/ChangeLog b/games-strategy/megaglest/ChangeLog
index 8b4f1939df6e..bda6b7bcf51e 100644
--- a/games-strategy/megaglest/ChangeLog
+++ b/games-strategy/megaglest/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-strategy/megaglest
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.25 2014/12/07 06:09:45 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/ChangeLog,v 1.26 2015/01/28 21:59:38 mgorny Exp $
+
+ 28 Jan 2015; Michał Górny <mgorny@gentoo.org> megaglest-3.9.1-r1.ebuild:
+ Switch to CPU_FLAGS_X86.
07 Dec 2014; Michael Sterrett <mr_bones_@gentoo.org>
-files/megaglest-3.6.0.3-as-needed.patch,
diff --git a/games-strategy/megaglest/megaglest-3.9.1-r1.ebuild b/games-strategy/megaglest/megaglest-3.9.1-r1.ebuild
index fabaf3f6b713..b7c953af286c 100644
--- a/games-strategy/megaglest/megaglest-3.9.1-r1.ebuild
+++ b/games-strategy/megaglest/megaglest-3.9.1-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.9.1-r1.ebuild,v 1.3 2014/12/05 10:16:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-strategy/megaglest/megaglest-3.9.1-r1.ebuild,v 1.4 2015/01/28 21:59:38 mgorny Exp $
# google-breakpad
# TODO: fribidi, libvorbis static
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/MegaGlest/megaglest-source/releases/download/${PV}/m
LICENSE="GPL-3 BitstreamVera"
SLOT="0"
KEYWORDS="amd64 x86"
-IUSE="debug +editor fribidi sse sse2 sse3 static +streflop +tools +unicode wxuniversal +model-viewer videos"
+IUSE="debug +editor fribidi cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 static +streflop +tools +unicode wxuniversal +model-viewer videos"
RDEPEND="
>=dev-lang/lua-5.1
@@ -75,11 +75,11 @@ src_prepare() {
}
src_configure() {
- if use sse3; then
+ if use cpu_flags_x86_sse3; then
SSE=3
- elif use sse2; then
+ elif use cpu_flags_x86_sse2; then
SSE=2
- elif use sse; then
+ elif use cpu_flags_x86_sse; then
SSE=1
else
SSE=0