diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-07-17 21:52:15 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-07-17 21:52:15 +0000 |
commit | 336b5f0df825b95dc6deee0d7150f6e9e5b65321 (patch) | |
tree | e7ba8293ef86b820d54b7f31d891848343719998 /games-board/pouetchess | |
parent | remove non-existant packages (diff) | |
download | gentoo-2-336b5f0df825b95dc6deee0d7150f6e9e5b65321.tar.gz gentoo-2-336b5f0df825b95dc6deee0d7150f6e9e5b65321.tar.bz2 gentoo-2-336b5f0df825b95dc6deee0d7150f6e9e5b65321.zip |
turn off the hackish optimization setting code (bug #230127)
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-board/pouetchess')
-rw-r--r-- | games-board/pouetchess/ChangeLog | 6 | ||||
-rw-r--r-- | games-board/pouetchess/pouetchess-0.2.0-r1.ebuild | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/games-board/pouetchess/ChangeLog b/games-board/pouetchess/ChangeLog index eb16b25c2ee5..da60044401aa 100644 --- a/games-board/pouetchess/ChangeLog +++ b/games-board/pouetchess/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-board/pouetchess # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/ChangeLog,v 1.9 2008/02/29 18:57:14 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/ChangeLog,v 1.10 2008/07/17 21:52:15 mr_bones_ Exp $ + + 17 Jul 2008; Michael Sterrett <mr_bones_@gentoo.org> + pouetchess-0.2.0-r1.ebuild: + turn off the hackish optimization setting code (bug #230127) 29 Feb 2008; Carsten Lohrke <carlo@gentoo.org> pouetchess-0.2.0-r1.ebuild: Remove icon extension from desktop entry to match Icon Theme Specification. diff --git a/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild b/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild index 4e7eff534532..ba79285e848e 100644 --- a/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild +++ b/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild,v 1.3 2008/02/29 18:57:14 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/pouetchess/pouetchess-0.2.0-r1.ebuild,v 1.4 2008/07/17 21:52:15 mr_bones_ Exp $ inherit eutils toolchain-funcs games @@ -49,8 +49,11 @@ src_unpack() { src_compile() { tc-export CC CXX + + # turn off the hackish optimization setting code (bug #230127) scons configure \ strip=false \ + optimize=false \ prefix="${GAMES_PREFIX}" \ datadir="${GAMES_DATADIR}"/${PN} \ $(use debug && echo debug=1) \ |