blob: 54eeede1d5d07d98f8626696c790e8cdcdf8f66e (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/elph/elph-0.1.2.ebuild,v 1.4 2003/09/11 01:02:54 msterret Exp $
DESCRIPTION="ELPH -- general-purpose Gibbs sampler for finding motifs in a set of DNA or protein sequences"
HOMEPAGE="http://www.tigr.org/software/ELPH/index.shtml"
SRC_URI="ftp://ftp.tigr.org/pub/software/ELPH/ELPH-${PV}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
S=${WORKDIR}/ELPH/sources
src_compile() {
emake || die
}
src_install() {
dodir /usr/bin
dobin elph
cd ${WORKDIR}/ELPH/
dodoc COPYRIGHT LICENSE README Readme.ELPH
}
|