diff options
Diffstat (limited to 'media-plugins/gimp-greycstoration')
-rw-r--r-- | media-plugins/gimp-greycstoration/ChangeLog | 7 | ||||
-rw-r--r-- | media-plugins/gimp-greycstoration/gimp-greycstoration-2.9.ebuild | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/media-plugins/gimp-greycstoration/ChangeLog b/media-plugins/gimp-greycstoration/ChangeLog index 6cca64dee9a1..fefabd5da181 100644 --- a/media-plugins/gimp-greycstoration/ChangeLog +++ b/media-plugins/gimp-greycstoration/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-plugins/gimp-greycstoration # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/gimp-greycstoration/ChangeLog,v 1.5 2008/08/01 17:05:01 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gimp-greycstoration/ChangeLog,v 1.6 2008/08/29 18:32:34 calchan Exp $ + + 29 Aug 2008; Denis Dupeyron <calchan@gentoo.org> + gimp-greycstoration-2.9.ebuild: + Added -fno-tree-pre to compilation options as partial redundancy + elimination on trees makes g++ go AWOL on certain platforms. 01 Aug 2008; Doug Goldstein <cardoe@gentoo.org> metadata.xml: add GLEP 56 USE flag desc from use.local.desc diff --git a/media-plugins/gimp-greycstoration/gimp-greycstoration-2.9.ebuild b/media-plugins/gimp-greycstoration/gimp-greycstoration-2.9.ebuild index 092855d6ffa3..bb4ac23a1cfe 100644 --- a/media-plugins/gimp-greycstoration/gimp-greycstoration-2.9.ebuild +++ b/media-plugins/gimp-greycstoration/gimp-greycstoration-2.9.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/media-plugins/gimp-greycstoration/gimp-greycstoration-2.9.ebuild,v 1.1 2008/06/18 09:11:28 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/gimp-greycstoration/gimp-greycstoration-2.9.ebuild,v 1.2 2008/08/29 18:32:34 calchan Exp $ inherit toolchain-funcs @@ -27,7 +27,7 @@ src_unpack() { src_compile() { $(tc-getCXX) -o greycstoration greycstoration4gimp.cpp \ $(gimptool-2.0 --cflags) $(gimptool-2.0 --libs) \ - -lpthread ${CXXFLAGS} ${LDFLAGS} \ + -lpthread ${CXXFLAGS} ${LDFLAGS} -fno-tree-pre \ || die "Compilation failed" } |