diff options
author | Olivier Fisette <ribosome@gentoo.org> | 2005-01-02 22:27:42 +0000 |
---|---|---|
committer | Olivier Fisette <ribosome@gentoo.org> | 2005-01-02 22:27:42 +0000 |
commit | eda55b5109e866abdd9dbde55db24d4737af6ca2 (patch) | |
tree | 804def67c6ee84fcde5755b9e180b37a1dd0cb2f /sci-biology/clustalw | |
parent | Change encoding to UTF-8 for GLEP 31 compliance (Manifest recommit) (diff) | |
download | gentoo-2-eda55b5109e866abdd9dbde55db24d4737af6ca2.tar.gz gentoo-2-eda55b5109e866abdd9dbde55db24d4737af6ca2.tar.bz2 gentoo-2-eda55b5109e866abdd9dbde55db24d4737af6ca2.zip |
Replaced gcc by toolchain-funcs.
Diffstat (limited to 'sci-biology/clustalw')
-rw-r--r-- | sci-biology/clustalw/ChangeLog | 8 | ||||
-rw-r--r-- | sci-biology/clustalw/clustalw-1.83-r1.ebuild | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/sci-biology/clustalw/ChangeLog b/sci-biology/clustalw/ChangeLog index 9b447501c848..70d9e5ad9ffa 100644 --- a/sci-biology/clustalw/ChangeLog +++ b/sci-biology/clustalw/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-biology/clustalw -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustalw/ChangeLog,v 1.2 2004/12/23 20:15:58 swegener Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustalw/ChangeLog,v 1.3 2005/01/02 22:27:42 ribosome Exp $ + + 02 Jan 2005; Olivier Fisette <ribosome@gentoo.org> + clustalw-1.83-r1.ebuild: + Use the toolchain-funcs rather than the gcc eclass. *clustalw-1.83-r1 (23 Dec 2004) diff --git a/sci-biology/clustalw/clustalw-1.83-r1.ebuild b/sci-biology/clustalw/clustalw-1.83-r1.ebuild index 8595b5a70d07..6b414f521537 100644 --- a/sci-biology/clustalw/clustalw-1.83-r1.ebuild +++ b/sci-biology/clustalw/clustalw-1.83-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustalw/clustalw-1.83-r1.ebuild,v 1.1 2004/12/23 18:55:17 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/clustalw/clustalw-1.83-r1.ebuild,v 1.2 2005/01/02 22:27:42 ribosome Exp $ -inherit gcc +inherit toolchain-funcs DESCRIPTION="General purpose multiple alignment program for DNA and proteins" HOMEPAGE="http://www.embl-heidelberg.de/~seqanal/" @@ -20,7 +20,7 @@ S=${WORKDIR}/${PN}${PV} src_unpack(){ unpack ${A} cd ${S} - 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%clustalw_help%/usr/share/doc/${PF}/clustalw_help%" clustalw.c |