diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-06-21 06:38:10 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-06-21 06:38:10 +0000 |
commit | 42541a720cb9fe3290e2c92d1f465cbbb1abf06c (patch) | |
tree | 976b6131993a3340519178dd58b17ae54cfc337c /sci-biology/raxml/raxml-7.2.5.ebuild | |
parent | Maintainer changed to net-mail with dertobi123's permission (diff) | |
download | historical-42541a720cb9fe3290e2c92d1f465cbbb1abf06c.tar.gz historical-42541a720cb9fe3290e2c92d1f465cbbb1abf06c.tar.bz2 historical-42541a720cb9fe3290e2c92d1f465cbbb1abf06c.zip |
Tweaking ebuild, respect LDFLAGS #335629
Package-Manager: portage-2.2.0_alpha41/cvs/Linux x86_64
Diffstat (limited to 'sci-biology/raxml/raxml-7.2.5.ebuild')
-rw-r--r-- | sci-biology/raxml/raxml-7.2.5.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sci-biology/raxml/raxml-7.2.5.ebuild b/sci-biology/raxml/raxml-7.2.5.ebuild index 6f3a6a52161b..b33622313705 100644 --- a/sci-biology/raxml/raxml-7.2.5.ebuild +++ b/sci-biology/raxml/raxml-7.2.5.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/raxml/raxml-7.2.5.ebuild,v 1.1 2010/01/27 15:58:33 weaver Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/raxml/raxml-7.2.5.ebuild,v 1.2 2011/06/21 06:38:10 jlec Exp $ -EAPI="2" +EAPI=2 inherit toolchain-funcs @@ -10,10 +10,10 @@ DESCRIPTION="A Program for Sequential, Parallel & Distributed Inference of Large HOMEPAGE="http://wwwkramer.in.tum.de/exelixis/software.html" SRC_URI="http://wwwkramer.in.tum.de/exelixis/software/RAxML-${PV}.tar.bz2" -LICENSE="GPL-2" SLOT="0" -IUSE="+threads" +LICENSE="GPL-2" KEYWORDS="~amd64 ~x86" +IUSE="+threads" # mpi is not supported in version 7.2.2. mpi is enabled by adding -DPARALLEL to CFLAGS DEPEND="" # mpi? ( virtual/mpi )" @@ -22,9 +22,10 @@ RDEPEND="${DEPEND}" S="${WORKDIR}/RAxML-${PV}" src_prepare() { - sed -i -e 's/CFLAGS =/CFLAGS := ${CFLAGS}/' \ + sed \ + -e 's/CFLAGS =/CFLAGS := ${CFLAGS}/' \ -e 's/CC = gcc/CC = '$(tc-getCC)'/' \ - Makefile.* || die + -i Makefile.* || die } src_compile() { |