diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2007-11-05 15:13:22 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2007-11-05 15:13:22 +0000 |
commit | 395082b77d23143febf47bae804026b1ea2514fb (patch) | |
tree | bc4a1f66589a55e38303f90a12e94fd992bdf167 /sci-mathematics | |
parent | Actually commit to amd64 stable - already in ChangeLog... (diff) | |
download | gentoo-2-395082b77d23143febf47bae804026b1ea2514fb.tar.gz gentoo-2-395082b77d23143febf47bae804026b1ea2514fb.tar.bz2 gentoo-2-395082b77d23143febf47bae804026b1ea2514fb.zip |
Removed the icc USE flag stuff as suggested by dberkholz.
(Portage version: 2.1.3.16)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/mathomatic/ChangeLog | 6 | ||||
-rw-r--r-- | sci-mathematics/mathomatic/mathomatic-12.7.9.ebuild | 13 |
2 files changed, 9 insertions, 10 deletions
diff --git a/sci-mathematics/mathomatic/ChangeLog b/sci-mathematics/mathomatic/ChangeLog index b6dbc997708d..ed9c5f97b3fc 100644 --- a/sci-mathematics/mathomatic/ChangeLog +++ b/sci-mathematics/mathomatic/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-mathematics/mathomatic # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.20 2007/11/02 02:37:06 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/ChangeLog,v 1.21 2007/11/05 15:13:22 cryos Exp $ + + 05 Nov 2007; Marcus D. Hanwell <cryos@gentoo.org> + mathomatic-12.7.9.ebuild: + Removed the icc USE flag stuff as suggested by dberkholz. *mathomatic-12.7.9 (02 Nov 2007) diff --git a/sci-mathematics/mathomatic/mathomatic-12.7.9.ebuild b/sci-mathematics/mathomatic/mathomatic-12.7.9.ebuild index d0c6c7442385..8ed9ed386c8c 100644 --- a/sci-mathematics/mathomatic/mathomatic-12.7.9.ebuild +++ b/sci-mathematics/mathomatic/mathomatic-12.7.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-12.7.9.ebuild,v 1.1 2007/11/02 02:37:06 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/mathomatic/mathomatic-12.7.9.ebuild,v 1.2 2007/11/05 15:13:22 cryos Exp $ inherit eutils @@ -11,18 +11,13 @@ SRC_URI="http://www.panix.com/~gesslein/${P}.tar.bz2" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="doc icc" +IUSE="doc" DEPEND="sys-libs/readline - sys-libs/ncurses - icc? ( dev-lang/icc )" + sys-libs/ncurses" src_compile() { - if use icc; then - CC="icc" CFLAGS="-O3 -axKWNBP -ipo" LDFLAGS="-O3 -axKWNBP -ipo -limf" emake READLINE=1 || die "emake failed" - else - emake READLINE=1 || die "emake failed" - fi + emake READLINE=1 || die "emake failed" } src_install() { |