diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-01-18 16:48:17 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-01-18 16:48:17 +0000 |
commit | b1da4d2c7404cf99aca8dab150295c431f422bae (patch) | |
tree | d3ab2ffcae644651e642002c47a1b3cff8371dbb /sci-biology/fasta | |
parent | Drop old. Whitespace. (diff) | |
download | gentoo-2-b1da4d2c7404cf99aca8dab150295c431f422bae.tar.gz gentoo-2-b1da4d2c7404cf99aca8dab150295c431f422bae.tar.bz2 gentoo-2-b1da4d2c7404cf99aca8dab150295c431f422bae.zip |
Warn for incompatible CFLAGS with USE=icc, #351758
(Portage version: 2.2.0_alpha17/cvs/Linux x86_64)
Diffstat (limited to 'sci-biology/fasta')
-rw-r--r-- | sci-biology/fasta/ChangeLog | 5 | ||||
-rw-r--r-- | sci-biology/fasta/fasta-35.4.10.ebuild | 12 |
2 files changed, 15 insertions, 2 deletions
diff --git a/sci-biology/fasta/ChangeLog b/sci-biology/fasta/ChangeLog index 91709247b347..4ef74dc27012 100644 --- a/sci-biology/fasta/ChangeLog +++ b/sci-biology/fasta/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-biology/fasta # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/fasta/ChangeLog,v 1.4 2011/01/18 14:43:57 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/fasta/ChangeLog,v 1.5 2011/01/18 16:48:17 jlec Exp $ + + 18 Jan 2011; Justin Lecher <jlec@gentoo.org> fasta-35.4.10.ebuild: + Warn for incompatible CFLAGS with USE=icc, #351758 18 Jan 2011; Markos Chandras <hwoarang@gentoo.org> fasta-35.4.10.ebuild: Stable on amd64 wrt bug #351758 diff --git a/sci-biology/fasta/fasta-35.4.10.ebuild b/sci-biology/fasta/fasta-35.4.10.ebuild index f0aaf404a75c..3534ac91a8ca 100644 --- a/sci-biology/fasta/fasta-35.4.10.ebuild +++ b/sci-biology/fasta/fasta-35.4.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/fasta/fasta-35.4.10.ebuild,v 1.5 2011/01/18 14:43:57 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/fasta/fasta-35.4.10.ebuild,v 1.6 2011/01/18 16:48:17 jlec Exp $ EAPI="2" @@ -20,6 +20,16 @@ DEPEND=" test? ( app-shells/tcsh )" RDEPEND="" +pkg_setup() { + if use icc; then + elog "Please make your CFLAGS are supported by icc" + elog "Either make sure they are set in /etc/make.conf" + elog "or run" + elog "env CFLAGS="..." emerge fasta" + epause 5 + fi +} + src_prepare() { CC_ALT= CFLAGS_ALT= |