blob: b1678c87c1dad42ba8982c9f9eced05af7c75a10 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/hmmer/hmmer-2.3.1.ebuild,v 1.3 2003/11/19 04:29:39 sediener Exp $
DESCRIPTION="HMMER - Biological sequence analysis with profile HMMs"
HOMEPAGE="http://hmmer.wustl.edu/"
SRC_URI="ftp://ftp.genetics.wustl.edu/pub/eddy/hmmer/2.3.1/hmmer-2.3.1.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
src_compile() {
./configure \
--host=${CHOST} \
--prefix=${D}/usr \
--exec_prefix=${D}/usr \
--mandir=${D}/usr/share/man || die "./configure failed"
# econf || die
emake || die
}
src_install() {
dodir usr/bin
dodir usr/share/man/man1
einstall || die
dodoc 00README COPYRIGHT INSTALL LICENSE NOTES Userguide.pdf
cd squid
dobin afetch alistat compalign compstruct revcomp seqstat seqsplit sfetch shuffle sreformat sindex weight translate
}
|