diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-07-20 20:39:15 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-07-20 20:39:15 +0000 |
commit | 03de317c45a93431fbcac5d5949fe95363fe262f (patch) | |
tree | ef5f3c85f16eb24c30efce62f3cc7773fa01eabd /eclass/embassy.eclass | |
parent | add X11 to DEPEND #57687 and move to stable (Manifest recommit) (diff) | |
download | gentoo-2-03de317c45a93431fbcac5d5949fe95363fe262f.tar.gz gentoo-2-03de317c45a93431fbcac5d5949fe95363fe262f.tar.bz2 gentoo-2-03de317c45a93431fbcac5d5949fe95363fe262f.zip |
Removing explicit icc support since no patching is needed.
Diffstat (limited to 'eclass/embassy.eclass')
-rw-r--r-- | eclass/embassy.eclass | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/eclass/embassy.eclass b/eclass/embassy.eclass index 233df0a28dd7..e67f182fd7a4 100644 --- a/eclass/embassy.eclass +++ b/eclass/embassy.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/embassy.eclass,v 1.1 2004/07/20 00:37:20 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/embassy.eclass,v 1.2 2004/07/20 20:39:15 ribosome Exp $ # Author Olivier Fisette <ribosome@gentoo.org> @@ -28,18 +28,15 @@ SRC_URI="ftp://ftp.uk.embnet.org/pub/EMBOSS/EMBOSS-${EBOV}.tar.gz ftp://ftp.uk.embnet.org/pub/EMBOSS/${EF}.tar.gz" SLOT="0" -IUSE="X png icc" +IUSE="X png" -RDEPEND="=app-sci/emboss-${EBOV}* +DEPEND="=app-sci/emboss-${EBOV}* X? ( virtual/x11 ) png? ( sys-libs/zlib media-libs/libpng >=media-libs/gd-1.8 )" -DEPEND="icc? ( dev-lang/icc ) - ${RDEPEND}" - S=${WORKDIR}/EMBOSS-${EBOV}/embassy/${EF} embassy_src_unpack() { @@ -53,10 +50,6 @@ embassy_src_unpack() { } embassy_src_compile() { - if use icc; then - CC=/opt/intel/compiler80/bin/icc - CXX=/opt/intel/compiler80/bin/icc - fi local EXTRA_CONF ! use X && EXTRA_CONF="${EXTRA_CONF} --without-x" ! use png && EXTRA_CONF="${EXTRA_CONF} --without-pngdriver" |