blob: dab9edf500383b020996f4a479514d4faa5f76ca (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/mpiblast/mpiblast-1.5.0.ebuild,v 1.1 2009/04/13 00:58:49 weaver Exp $
EAPI="2"
inherit eutils
DESCRIPTION="An MPI implementation of NCBI BLAST"
HOMEPAGE="http://www.mpiblast.org/"
SRC_URI="http://www.mpiblast.org/downloads/files/mpiBLAST-${PV}-pio.tgz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="~amd64 ~x86"
DEPEND="virtual/mpi
app-shells/tcsh"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P}-pio"
src_configure() {
epatch "${FILESDIR}"/${P}-*.patch
}
src_compile() {
# configure also runs build
econf
}
src_install() {
emake DESTDIR="${D}" install || die
}
|