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 | f8f2847c097d6ed895ce3a790f47e68dae7353a6 (patch) | |
tree | 7ac6972b5bd7c6b7b284bb041822d605ab92b0d8 | |
parent | Added to ~ppc-macos. (diff) | |
download | historical-f8f2847c097d6ed895ce3a790f47e68dae7353a6.tar.gz historical-f8f2847c097d6ed895ce3a790f47e68dae7353a6.tar.bz2 historical-f8f2847c097d6ed895ce3a790f47e68dae7353a6.zip |
Changed CC for gcc-getCC.
-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 |