blob: 00d6e0a564f62c4c4c750d372ac0b54f86666189 (
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
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/mira/mira-3.0.5.ebuild,v 1.1 2010/05/05 08:00:05 weaver Exp $
EAPI="2"
MIRA_3RDPARTY_PV="17-04-2010"
inherit base autotools
DESCRIPTION="Whole Genome Shotgun and EST Sequence Assembler for Sanger, 454 and Solexa / Illumina"
HOMEPAGE="http://www.chevreux.org/projects_mira.html"
SRC_URI="mirror://sourceforge/mira-assembler/${P}.tar.bz2
mirror://sourceforge/mira-assembler/mira_3rdparty_${MIRA_3RDPARTY_PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
IUSE="doc"
KEYWORDS="~amd64 ~x86"
CDEPEND=">=dev-libs/boost-1.35.0"
DEPEND="${CDEPEND}
dev-libs/expat
doc? ( >=app-text/texlive-core-2009 )"
RDEPEND="${CDEPEND}"
src_prepare() {
find -name 'configure*' -or -name 'Makefile*' | xargs sed -i 's/flex++/flex -+/' || die
epatch "${FILESDIR}"/${PN}-3.0.0-asneeded.patch
AT_M4DIR="config/m4" eautoreconf
}
src_compile() {
base_src_compile
if use doc; then emake -C doc clean docs || die; fi
}
src_install() {
einstall || die
dodoc AUTHORS GETTING_STARTED NEWS README* HELP_WANTED THANKS INSTALL
find doc/docs/man -type f | xargs doman
find doc/docs/texinfo -type f | xargs doinfo
dobin "${WORKDIR}"/3rdparty/{sff_extract,qual2ball,*.pl}
}
|