diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2006-04-15 08:54:38 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2006-04-15 08:54:38 +0000 |
commit | 5670a1dcc9fe1b4c0a49bb90fff0ef4c6d3aae75 (patch) | |
tree | 53a01fb8dc08fd0583979862be0adc81bb5d309e /sci-mathematics | |
parent | bail if trying to install on devfs or udev (diff) | |
download | gentoo-2-5670a1dcc9fe1b4c0a49bb90fff0ef4c6d3aae75.tar.gz gentoo-2-5670a1dcc9fe1b4c0a49bb90fff0ef4c6d3aae75.tar.bz2 gentoo-2-5670a1dcc9fe1b4c0a49bb90fff0ef4c6d3aae75.zip |
Replace -Os with -O2, closes bug 126779. Also stabilised on amd64.
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/yacas/ChangeLog | 5 | ||||
-rw-r--r-- | sci-mathematics/yacas/yacas-1.0.61.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/sci-mathematics/yacas/ChangeLog b/sci-mathematics/yacas/ChangeLog index 784f770651ae..e029c927d1db 100644 --- a/sci-mathematics/yacas/ChangeLog +++ b/sci-mathematics/yacas/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-mathematics/yacas # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.6 2006/01/16 01:27:57 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/ChangeLog,v 1.7 2006/04/15 08:54:38 cryos Exp $ + + 15 Apr 2006; Marcus D. Hanwell <cryos@gentoo.org> yacas-1.0.61.ebuild: + Replace -Os with -O2, closes bug 126779. Also stabilised on amd64. *yacas-1.0.61 (16 Jan 2006) diff --git a/sci-mathematics/yacas/yacas-1.0.61.ebuild b/sci-mathematics/yacas/yacas-1.0.61.ebuild index 5a3fb4f9321d..9c37c3fea230 100644 --- a/sci-mathematics/yacas/yacas-1.0.61.ebuild +++ b/sci-mathematics/yacas/yacas-1.0.61.ebuild @@ -1,18 +1,18 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.0.61.ebuild,v 1.1 2006/01/16 01:27:57 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/yacas/yacas-1.0.61.ebuild,v 1.2 2006/04/15 08:54:38 cryos Exp $ -inherit eutils +inherit eutils flag-o-matic IUSE="glut" -DESCRIPTION="very powerful general purpose Computer Algebra System" +DESCRIPTION="very powerful general purpose computer algebra system" HOMEPAGE="http://yacas.sourceforge.net/" SRC_URI="http://${PN}.sourceforge.net/backups/${P}.tar.gz" SLOT="0" LICENSE="GPL-2" -KEYWORDS="~x86 ~ppc ~amd64" +KEYWORDS="amd64 ~ppc ~x86" DEPEND="virtual/libc >=sys-apps/sed-4 @@ -30,6 +30,8 @@ src_unpack() { } src_compile() { + # Filter -Os due to reported issues with it in bug 126779. + replace-flags -Os -O2 econf --with-numlib=native || die "./configure failed" emake || die } |