diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2011-04-11 19:48:30 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2011-04-11 19:48:30 +0000 |
commit | c00f5dd9e182b38460831712cece0aef24205221 (patch) | |
tree | d01e82cc6f8dad048c0bc20a782d77515308283c /games-action | |
parent | Remove old. (diff) | |
download | gentoo-2-c00f5dd9e182b38460831712cece0aef24205221.tar.gz gentoo-2-c00f5dd9e182b38460831712cece0aef24205221.tar.bz2 gentoo-2-c00f5dd9e182b38460831712cece0aef24205221.zip |
avoid killing the user's -O setting in CFLAGS (bug #363141)
(Portage version: 2.1.9.42/cvs/Linux i686)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/supertuxkart/ChangeLog | 6 | ||||
-rw-r--r-- | games-action/supertuxkart/supertuxkart-0.7.ebuild | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/games-action/supertuxkart/ChangeLog b/games-action/supertuxkart/ChangeLog index 28237a769e69..9df29e142793 100644 --- a/games-action/supertuxkart/ChangeLog +++ b/games-action/supertuxkart/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/supertuxkart # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.22 2011/03/10 07:46:00 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/ChangeLog,v 1.23 2011/04/11 19:48:30 mr_bones_ Exp $ + + 11 Apr 2011; Michael Sterrett <mr_bones_@gentoo.org> + supertuxkart-0.7.ebuild: + avoid killing the user's -O setting in CFLAGS (bug #363141) *supertuxkart-0.7 (10 Mar 2011) diff --git a/games-action/supertuxkart/supertuxkart-0.7.ebuild b/games-action/supertuxkart/supertuxkart-0.7.ebuild index a0d1d8e29b0a..22c865dde7e7 100644 --- a/games-action/supertuxkart/supertuxkart-0.7.ebuild +++ b/games-action/supertuxkart/supertuxkart-0.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.7.ebuild,v 1.1 2011/03/10 07:46:00 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/supertuxkart/supertuxkart-0.7.ebuild,v 1.2 2011/04/11 19:48:30 mr_bones_ Exp $ EAPI=2 inherit autotools flag-o-matic eutils games @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/supertuxkart/SuperTuxKart/${PV}/${P}-src.tar.bz2 LICENSE="GPL-3 CCPL-Attribution-ShareAlike-3.0 CCPL-Attribution-2.0 CCPL-Sampling-Plus-1.0 public-domain as-is" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="nls unicode" +IUSE="debug nls unicode" RDEPEND=">=dev-games/irrlicht-1.7.2 virtual/opengl @@ -38,7 +38,9 @@ src_configure() { egamesconf \ --disable-dependency-tracking \ - $(use_enable nls) + --disable-optimization \ + $(use_enable nls) \ + $(use_enable debug) } src_install() { |