blob: 4da9c6dac23e963e8aebaee7cace87e1a36c4f0e (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/libcmatrix/libcmatrix-3.9.0.ebuild,v 1.1 2011/08/31 14:28:27 jlec Exp $
EAPI="3"
inherit autotools eutils
MY_P="${PN}${PV}_lite"
DESCRIPTION="lite version of pNMRsim"
HOMEPAGE="http://www.dur.ac.uk/paul.hodgkinson/pNMRsim/"
#SRC_URI="${HOMEPAGE}/${MY_P}.tar.gz"
SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="atlas sse threads"
RDEPEND="
sci-libs/minuit
atlas? ( || ( sci-libs/blas-atlas sci-libs/atlas ) )"
DEPEND="${RDEPEND}"
S="${WORKDIR}"/${PN}R3
src_prepare() {
epatch \
"${FILESDIR}"/3.2.1-shared.patch \
"${FILESDIR}"/3.2.1-minuit2.patch \
"${FILESDIR}"/3.2.1-gcc4.4.patch \
"${FILESDIR}"/3.2.1-gcc4.6.patch \
"${FILESDIR}"/${PV}-atlas.patch
eautoreconf
}
src_configure() {
econf \
--with-minuit \
$(use_with atlas) \
$(use_with sse) \
$(use_with threads)
}
src_install() {
dolib.so lib/*.so* || die "install failed"
insinto /usr/include/${PN}R3
doins include/* || die "no includes"
dodoc CHANGES docs/* || die "no docs"
}
|