blob: 7adfb5cf564b6c92e46ad4c300ed2bbc9d1cad93 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="Generecon performs linkage disequilibrium gene mapping based on coalescent theory using Bayesian Markov Chain Monte Carlo methods."
HOMEPAGE="http://www.daimi.au.dk/~mailund/GeneRecon/"
SRC_URI="http://www.daimi.au.dk/~mailund/GeneRecon/download/${P}.tar.gz"
SLOT="0"
# License of the package. This must match the name of file(s) in
# /usr/portage/licenses/. For complex license combination see the developer
# docs on gentoo.org for details.
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="dev-scheme/guile
sci-libs/gsl"
src_unpack() {
unpack ${A}
sed 's|#PF#|'${PF}'|g' ${FILESDIR}/${PN}-docfiles.patch > ${PN}-docfiles.patch
epatch ${PN}-docfiles.patch
cd ${S}
pwd
einfo "Regenerating autotools files..."
aclocal || die "aclocal failed"
automake || die "automake failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
}
|