blob: f9ebdaefa468827c5def683b2064ab8fc25332e8 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-biology/biogrep/biogrep-1.0-r1.ebuild,v 1.1 2010/10/10 17:43:49 jlec Exp $
EAPI="3"
inherit toolchain-funcs
DESCRIPTION="Multithreading application for matching large sets of patternsagainst biosequence dbs"
HOMEPAGE="http://web.mit.edu/bamel/biogrep.shtml"
SRC_URI="http://web.mit.edu/bamel/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
src_prepare() {
tc-export CC
}
src_install() {
emake prefix="${D}"/usr install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
}
|