diff options
Diffstat (limited to 'media-gfx/gimp/gimp-1.3.12.ebuild')
-rw-r--r-- | media-gfx/gimp/gimp-1.3.12.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/media-gfx/gimp/gimp-1.3.12.ebuild b/media-gfx/gimp/gimp-1.3.12.ebuild index 7a8fdaa2a20e..f0184790cf65 100644 --- a/media-gfx/gimp/gimp-1.3.12.ebuild +++ b/media-gfx/gimp/gimp-1.3.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-1.3.12.ebuild,v 1.3 2003/02/25 21:30:12 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-1.3.12.ebuild,v 1.4 2003/03/10 12:01:38 seemant Exp $ IUSE="doc python aalib" @@ -39,6 +39,13 @@ DEPEND="${RDEPEND} doc? ( >=dev-util/gtk-doc-1 )" src_compile() { + + # Strip out -fomit-frame-pointer for k6's + is-flag "-march=k6-3" && strip-flags "-fomit-frame-pointer" + is-flag "-march=k6-2" && strip-flags "-fomit-frame-pointer" + is-flag "-march=k6" && strip-flags "-fomit-frame-pointer" + + local myconf use doc \ |