aboutsummaryrefslogtreecommitdiff
blob: 012fc64995555af8b6e84f37da3e3e977a6dce55 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

AUTOTOOLS_AUTORECONF=true

PYTHON_COMPAT=( python2_7 )

inherit autotools-utils distutils-r1 subversion

DESCRIPTION="General Hidden Markov Model library"
HOMEPAGE="http://ghmm.sourceforge.net/"
SRC_URI=""
ESVN_REPO_URI="https://ghmm.svn.sourceforge.net/svnroot/ghmm/trunk/ghmm"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS=""
IUSE="gsl lapack +python static-libs"

RDEPEND="
	dev-libs/libxml2
	gsl? ( sci-libs/gsl )
	lapack? (
		sci-libs/clapack
		virtual/lapack
		)"
DEPEND="${RDEPEND}"

S="${WORKDIR}/${PN}"

ESVN_BOOTSTRAP="autotools-utils_src_prepare"

PATCHES=(
	"${FILESDIR}"/${P}-clapack.patch
	"${FILESDIR}"/${P}-out-of-source.patch
	"${FILESDIR}"/${P}-link.patch
	"${FILESDIR}"/${P}-respect.patch
	"${FILESDIR}"/${P}-obsolete.patch
)

src_prepare() {
	use python && AUTOTOOLS_IN_SOURCE_BUILD=1
	autotools-utils_src_prepare
	use python && cd "${S}"/ghmmwrapper && distutils-r1_python_prepare
}

src_configure() {
	local myeconfargs=(
		--without-python
		--disable-obsolete
		$(use_enable gsl)
		$(use_enable lapack atlas)
	)
	autotools-utils_src_configure
}

src_compile() {
	autotools-utils_src_compile
	use python && cd "${S}"/ghmmwrapper && distutils-r1_src_compile
}

src_install() {
	autotools-utils_src_install
	use python && cd "${S}"/ghmmwrapper && distutils-r1_src_install
}