diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-10-19 21:06:46 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-10-19 21:06:46 +0000 |
commit | 379a35167ed5dfa19dfe89ecea8e6279dd9d1c97 (patch) | |
tree | 40866025d1db53914bd31f826ea57ff78c88611f /games-sports | |
parent | Stable on alpha, bug #287932 (diff) | |
download | gentoo-2-379a35167ed5dfa19dfe89ecea8e6279dd9d1c97.tar.gz gentoo-2-379a35167ed5dfa19dfe89ecea8e6279dd9d1c97.tar.bz2 gentoo-2-379a35167ed5dfa19dfe89ecea8e6279dd9d1c97.zip |
Work even if ode is built with USE=double-precision (bug #289792)
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-sports')
-rw-r--r-- | games-sports/xmoto/ChangeLog | 5 | ||||
-rw-r--r-- | games-sports/xmoto/xmoto-0.5.2.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/games-sports/xmoto/ChangeLog b/games-sports/xmoto/ChangeLog index 5de68c3b95c9..b7912b60e864 100644 --- a/games-sports/xmoto/ChangeLog +++ b/games-sports/xmoto/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-sports/xmoto # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/ChangeLog,v 1.41 2009/10/15 17:47:46 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/ChangeLog,v 1.42 2009/10/19 21:06:46 mr_bones_ Exp $ + + 19 Oct 2009; Michael Sterrett <mr_bones_@gentoo.org> xmoto-0.5.2.ebuild: + Work even if ode is built with USE=double-precision (bug #289792) 15 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> xmoto-0.5.2.ebuild: Keyword ~amd64 (thanks to sera in #gentoo-bugs). diff --git a/games-sports/xmoto/xmoto-0.5.2.ebuild b/games-sports/xmoto/xmoto-0.5.2.ebuild index b904861c0315..120430598702 100644 --- a/games-sports/xmoto/xmoto-0.5.2.ebuild +++ b/games-sports/xmoto/xmoto-0.5.2.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/xmoto-0.5.2.ebuild,v 1.4 2009/10/15 17:47:46 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-sports/xmoto/xmoto-0.5.2.ebuild,v 1.5 2009/10/19 21:06:46 mr_bones_ Exp $ EAPI=2 -inherit eutils games +inherit eutils flag-o-matic games LVL_PV="0.6.0" #they unfortunately don't release both at the same time, why ~ as separator :( LVL="inksmoto-${LVL_PV}" @@ -49,6 +49,10 @@ src_prepare() { } src_configure() { + # bug #289792 + filter-flags -DdDOUBLE + has_version 'dev-games/ode[double-precision]' && append-flags -DdDOUBLE + egamesconf \ --disable-dependency-tracking \ --with-enable-zoom=1 \ |