diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2004-11-17 14:17:51 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2004-11-17 14:17:51 +0000 |
commit | bab971934c082b2445f88c00f160eaf0562c42ae (patch) | |
tree | cf2fa08b2d70d58a140c2b915b13641ad55e7c40 /app-sci | |
parent | new version 0.6.6. :-) (Manifest recommit) (diff) | |
download | gentoo-2-bab971934c082b2445f88c00f160eaf0562c42ae.tar.gz gentoo-2-bab971934c082b2445f88c00f160eaf0562c42ae.tar.bz2 gentoo-2-bab971934c082b2445f88c00f160eaf0562c42ae.zip |
Added to x86. Use toolchain-funcs eclass.
Diffstat (limited to 'app-sci')
-rw-r--r-- | app-sci/clustalx/ChangeLog | 5 | ||||
-rw-r--r-- | app-sci/clustalx/clustalx-1.83.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/app-sci/clustalx/ChangeLog b/app-sci/clustalx/ChangeLog index c3f5e86abe66..8e93e4dc7118 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.2 2004/10/14 14:35:24 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/clustalx/ChangeLog,v 1.3 2004/11/17 14:17:51 ribosome Exp $ + + 17 Nov 2004; Olivier Fisette <ribosome@gentoo.org> clustalx-1.83.ebuild: + Added to x86. Use toolchain-funcs rather than the gcc eclass. 14 Oct 2004; Olivier Fisette <ribosome@gentoo.org> clustalx-1.83.ebuild: Use gcc.eclass rather than ${CC}. diff --git a/app-sci/clustalx/clustalx-1.83.ebuild b/app-sci/clustalx/clustalx-1.83.ebuild index 75f1fec30f3f..978fbef976f4 100644 --- a/app-sci/clustalx/clustalx-1.83.ebuild +++ b/app-sci/clustalx/clustalx-1.83.ebuild @@ -1,8 +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.2 2004/10/14 14:35:24 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/clustalx/clustalx-1.83.ebuild,v 1.3 2004/11/17 14:17:51 ribosome Exp $ -inherit gcc +inherit toolchain-funcs DESCRIPTION="Graphical interface for the ClustalW multiple alignment program" HOMEPAGE="http://www-igbmc.u-strasbg.fr/BioInfo/ClustalX/" @@ -10,7 +10,7 @@ SRC_URI="ftp://ftp-igbmc.u-strasbg.fr/pub/ClustalX/clustalx1.83.sun.tar.gz" LICENSE="public-domain" SLOT="0" -KEYWORDS="~x86" +KEYWORDS="x86" IUSE="" DEPEND="app-sci/ncbi-tools @@ -23,7 +23,7 @@ src_unpack() { unpack ${A} cd ${S} cp makefile.linux makefile - sed -i -e "s/CC = cc/CC = $(gcc-getCC)/" makefile + sed -i -e "s/CC = cc/CC = $(tc-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 |