blob: df43adb7811cd23326ce21ca4e1dfed61d18a988 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-4.2-r1.ebuild,v 1.7 2011/12/21 08:38:25 phajdan.jr Exp $
EAPI=4
inherit autotools-utils flag-o-matic
DESCRIPTION="C++ library of mathematical, signal processing and communication"
HOMEPAGE="http://itpp.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-3"
KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
IUSE="blas debug doc fftw lapack minimal static-libs"
RDEPEND="
blas? ( virtual/blas lapack? ( virtual/lapack ) )
!minimal? ( fftw? ( >=sci-libs/fftw-3 ) )"
DEPEND="${RDEPEND}
blas? ( dev-util/pkgconfig )
doc? ( app-doc/doxygen virtual/latex-base )
lapack? ( dev-util/pkgconfig )"
PATCHES=(
"${FILESDIR}"/${PN}-4.0.7-fastica-fix-endless-loop.patch
"${FILESDIR}"/${PN}-4.2-fastica-correct-dim.patch
"${FILESDIR}"/${PN}-4.2-test-fftw.patch
)
src_prepare() {
# turn off performance critical debug code
use debug || append-flags -DNDEBUG
sed \
-e 's:-pipe::g' \
-i configure* || die
autotools-utils_src_prepare
eautoreconf
}
src_configure() {
local blasconf="no"
use blas && blasconf="$(pkg-config --libs blas)"
local lapackconf="no"
use lapack && lapackconf="$(pkg-config --libs blas lapack)"
local myeconfargs=(
--docdir="${EPREFIX}/usr/share/doc/${PF}"
--enable-shared
$(use_enable doc html-doc)
$(use_enable debug)
$(use_enable !minimal comm)
$(use_enable !minimal fixed)
$(use_enable !minimal optim)
$(use_enable !minimal protocol)
$(use_enable !minimal signal)
$(use_enable !minimal srccode)
$(use_with fftw fft)
--with-blas="${blasconf}"
--with-lapack="${lapackconf}"
)
autotools-utils_src_configure
}
|