blob: 9fb44dfcc905b12cb5655093db2205001c4c2640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit autotools flag-o-matic
DESCRIPTION="De novo assembly of whole-genome shotgun microreads"
HOMEPAGE="http://www.broadinstitute.org/science/programs/genome-biology/crd"
SRC_URI="ftp://ftp.broadinstitute.org/pub/crd/ALLPATHS/Release-LG/latest_source_code/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
IUSE=""
KEYWORDS="amd64 -x86"
DEPEND="
dev-libs/boost
!sci-biology/allpaths
sci-biology/vaal"
RDEPEND=""
src_prepare() {
sed -i 's/-ggdb3//' configure.ac || die
eautoreconf
}
src_install() {
einstall || die
# Provided by sci-biology/vaal
for i in QueryLookupTable ScaffoldAccuracy MakeLookupTable Fastb ShortQueryLookup; do
rm "${D}/usr/bin/$i" || die
done
}
|