diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-10-14 14:35:24 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-10-14 14:35:24 +0000 |
commit | 93d71e9c16acc86db7e803ccbaedacbcfa0a2787 (patch) | |
tree | bdb82e9ab27b6a1e8f89ef40048bb0037a233608 /app-sci/clustalx | |
parent | Added to ~ppc-macos. (Manifest recommit) (diff) | |
download | gentoo-2-93d71e9c16acc86db7e803ccbaedacbcfa0a2787.tar.gz gentoo-2-93d71e9c16acc86db7e803ccbaedacbcfa0a2787.tar.bz2 gentoo-2-93d71e9c16acc86db7e803ccbaedacbcfa0a2787.zip |
Changed CC for gcc-getCC.
Diffstat (limited to 'app-sci/clustalx')
-rw-r--r-- | app-sci/clustalx/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/clustalx/clustalx-1.83.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/app-sci/clustalx/ChangeLog b/app-sci/clustalx/ChangeLog index 3f1261550014..c3f5e86abe66 100644 --- a/app-sci/clustalx/ChangeLog +++ b/app-sci/clustalx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-sci/clustalx # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/clustalx/ChangeLog,v 1.1 2004/10/06 12:35:01 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/clustalx/ChangeLog,v 1.2 2004/10/14 14:35:24 ribosome Exp $ + + 14 Oct 2004; Olivier Fisette <ribosome@gentoo.org> clustalx-1.83.ebuild: + Use gcc.eclass rather than ${CC}. *clustalx-1.83 (06 Oct 2004) diff --git a/app-sci/clustalx/clustalx-1.83.ebuild b/app-sci/clustalx/clustalx-1.83.ebuild index 74af4b33cabf..75f1fec30f3f 100644 --- a/app-sci/clustalx/clustalx-1.83.ebuild +++ b/app-sci/clustalx/clustalx-1.83.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/app-sci/clustalx/clustalx-1.83.ebuild,v 1.1 2004/10/06 12:35:01 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/clustalx/clustalx-1.83.ebuild,v 1.2 2004/10/14 14:35:24 ribosome Exp $ + +inherit gcc DESCRIPTION="Graphical interface for the ClustalW multiple alignment program" HOMEPAGE="http://www-igbmc.u-strasbg.fr/BioInfo/ClustalX/" @@ -21,7 +23,7 @@ src_unpack() { unpack ${A} cd ${S} cp makefile.linux makefile - sed -i -e "s/CC = cc/CC = ${CC:gcc}/" makefile + sed -i -e "s/CC = cc/CC = $(gcc-getCC)/" makefile sed -i -e "s/CFLAGS = -c -O/CFLAGS = -c ${CFLAGS}/" makefile sed -i -e "s/LFLAGS = -O -lm/LFLAGS = -lm ${CFLAGS}/" makefile sed -i -e "s%-I/usr/bio/src/ncbi/include%-I/usr/include/ncbi%" makefile |