summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Goller <morfic@gentoo.org>2004-12-12 06:27:23 +0000
committerDaniel Goller <morfic@gentoo.org>2004-12-12 06:27:23 +0000
commit8e705159c81974c17fb39a60fa94c38bced3232f (patch)
treea1182b5cfbabb55aa9982085cec0e1deeb51c581 /media-gfx
parentStable on amd64 (diff)
downloadhistorical-8e705159c81974c17fb39a60fa94c38bced3232f.tar.gz
historical-8e705159c81974c17fb39a60fa94c38bced3232f.tar.bz2
historical-8e705159c81974c17fb39a60fa94c38bced3232f.zip
filtering -fomit-frame-pointer on k6-2
Diffstat (limited to 'media-gfx')
-rw-r--r--media-gfx/povray/ChangeLog5
-rw-r--r--media-gfx/povray/Manifest10
-rw-r--r--media-gfx/povray/povray-3.6.1-r1.ebuild11
3 files changed, 19 insertions, 7 deletions
diff --git a/media-gfx/povray/ChangeLog b/media-gfx/povray/ChangeLog
index 2d95a37f4f01..28ca69f35848 100644
--- a/media-gfx/povray/ChangeLog
+++ b/media-gfx/povray/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/povray
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/ChangeLog,v 1.37 2004/12/08 06:04:24 morfic Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/ChangeLog,v 1.38 2004/12/12 06:27:23 morfic Exp $
+
+ 12 Dec 2004; Daniel Goller <morfic@gentoo.org> povray-3.6.1-r1.ebuild:
+ Removing -fomit-frame-pointer if k6-2 march is used, closing bug 71255
07 Dec 2004; Daniel Goller <morfic@gentoo.org> povray-3.6.1-r1.ebuild:
Stable on ppc and x86
diff --git a/media-gfx/povray/Manifest b/media-gfx/povray/Manifest
index 5ce659d83930..de30d4f3871d 100644
--- a/media-gfx/povray/Manifest
+++ b/media-gfx/povray/Manifest
@@ -3,8 +3,8 @@ Hash: SHA1
MD5 1f51175c42915545f5adef2c669bbd4a povray-3.5.ebuild 3923
MD5 eb81ead17e6d263b563613b2ce985af2 povray-3.1g-r5.ebuild 3497
-MD5 d6e2bd93481686bffeb889d064341ed7 povray-3.6.1-r1.ebuild 1143
-MD5 119ae9264eecc13ecc648f1313812d26 ChangeLog 6532
+MD5 8460e23645b2481a4863a338b25222e5 povray-3.6.1-r1.ebuild 1278
+MD5 66941c09f3affcda510142e921c4bdb7 ChangeLog 6679
MD5 48eaa040015831c1b8e6bc2e0e6ce522 metadata.xml 262
MD5 05e59113d8c2485e9c60b679e834dff2 files/gentoo-3.5.patch 247
MD5 21a61dd7740c2a3bec0cc8b27327fae2 files/digest-povray-3.5 58
@@ -17,7 +17,7 @@ MD5 c46bc643339b324f376236e2a9df237b files/digest-povray-3.6.1-r1 64
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.6 (GNU/Linux)
-iD8DBQFBtpmQUpKYMelfdYERAlPAAJ9X8Vz2RLFPESywGazXK+BHKheZlACeOvwi
-vaUjmNCYBnLxVoZerEqYBVU=
-=D/ly
+iD8DBQFBu+S/UpKYMelfdYERApagAKCMvdoi/bi6hl7upU3keS6rPNn/JgCfR51M
+ig6cPklokPan/wir6TvVUk4=
+=aeCq
-----END PGP SIGNATURE-----
diff --git a/media-gfx/povray/povray-3.6.1-r1.ebuild b/media-gfx/povray/povray-3.6.1-r1.ebuild
index 59bf647a3a5b..59b2cce66c52 100644
--- a/media-gfx/povray/povray-3.6.1-r1.ebuild
+++ b/media-gfx/povray/povray-3.6.1-r1.ebuild
@@ -1,6 +1,8 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/povray-3.6.1-r1.ebuild,v 1.3 2004/12/08 06:04:24 morfic Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/povray/povray-3.6.1-r1.ebuild,v 1.4 2004/12/12 06:27:23 morfic Exp $
+
+inherit flag-o-matic
DESCRIPTION="The Persistence Of Vision Ray Tracer"
SRC_URI="ftp://ftp.povray.org/pub/povray/Official/Unix/povray-3.6.tar.bz2"
@@ -22,6 +24,13 @@ DEPEND="media-libs/libpng
src_compile() {
local myconf
+ # closes bug 71255
+ if get-flag march == k6-2 ; then
+ filter-flags -fomit-frame-pointer
+ fi
+
+ echo ${CFLAGS}
+
use X && myconf="${myconf} --with-x" \
|| myconf="${myconf} --without-x"\
CFLAGS="${CFLAGS} -DX_DISPLAY_MISSING"