diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2009-08-20 16:56:10 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2009-08-20 16:56:10 +0000 |
commit | 0298a2a24cef17d459c5954af28c13de7db850bf (patch) | |
tree | 91c0f23298c977c8a46456f6e117d9961234a48b /sci-biology/allpaths/allpaths-2.0.ebuild | |
parent | With thanks to Ondrej Filip, the build system can now handle parallel make. T... (diff) | |
download | historical-0298a2a24cef17d459c5954af28c13de7db850bf.tar.gz historical-0298a2a24cef17d459c5954af28c13de7db850bf.tar.bz2 historical-0298a2a24cef17d459c5954af28c13de7db850bf.zip |
Fix compile issue on x86, bug 279711
Package-Manager: portage-2.2_rc30/cvs/Linux x86_64
RepoMan-Options: --force
Diffstat (limited to 'sci-biology/allpaths/allpaths-2.0.ebuild')
-rw-r--r-- | sci-biology/allpaths/allpaths-2.0.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sci-biology/allpaths/allpaths-2.0.ebuild b/sci-biology/allpaths/allpaths-2.0.ebuild index 3d8192db7c3f..5814ee571f3a 100644 --- a/sci-biology/allpaths/allpaths-2.0.ebuild +++ b/sci-biology/allpaths/allpaths-2.0.ebuild @@ -1,9 +1,11 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/allpaths-2.0.ebuild,v 1.2 2009/07/08 03:50:03 weaver Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-biology/allpaths/allpaths-2.0.ebuild,v 1.3 2009/08/20 16:56:10 weaver Exp $ EAPI="2" +inherit base + DESCRIPTION="De novo assembly of whole-genome shotgun microreads" HOMEPAGE="http://www.broadinstitute.org/science/programs/genome-biology/crd" SRC_URI="ftp://ftp.broad.mit.edu/pub/crd/ALLPATHS/Release-2-0/allpaths-2.0.tar.gz @@ -18,9 +20,14 @@ KEYWORDS="~amd64 ~x86" DEPEND=">=sys-devel/gcc-4.3.2" RDEPEND="" +PATCHES=( + "${FILESDIR}"/${P}-gcc-x86-no-autocast.patch +) + S="${WORKDIR}" src_prepare() { + base_src_prepare rm -rf libxerces* xerces_include || die } |