diff options
author | 2008-07-30 22:24:45 +0000 | |
---|---|---|
committer | 2008-07-30 22:24:45 +0000 | |
commit | 87be9d636b4186c741e2729c0cbce0edcca2c652 (patch) | |
tree | f7c3c30631fb3c6eb25c9e73a6798ca9760cf37b /sci-libs/itpp | |
parent | stable ppc64, bug 232484 (diff) | |
download | gentoo-2-87be9d636b4186c741e2729c0cbce0edcca2c652.tar.gz gentoo-2-87be9d636b4186c741e2729c0cbce0edcca2c652.tar.bz2 gentoo-2-87be9d636b4186c741e2729c0cbce0edcca2c652.zip |
Version bump.
(Portage version: 2.2_rc3/cvs/Linux 2.6.26-SENTINEL-1 i686)
Diffstat (limited to 'sci-libs/itpp')
-rw-r--r-- | sci-libs/itpp/ChangeLog | 7 | ||||
-rw-r--r-- | sci-libs/itpp/itpp-4.0.5.ebuild | 80 |
2 files changed, 86 insertions, 1 deletions
diff --git a/sci-libs/itpp/ChangeLog b/sci-libs/itpp/ChangeLog index 81716e236c69..af34e16ac2b6 100644 --- a/sci-libs/itpp/ChangeLog +++ b/sci-libs/itpp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/itpp # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.81 2008/05/25 06:58:46 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.82 2008/07/30 22:24:45 markusle Exp $ + +*itpp-4.0.5 (30 Jul 2008) + + 30 Jul 2008; Markus Dittrich <markusle@gentoo.org> +itpp-4.0.5.ebuild: + Version bump. 25 May 2008; Markus Rothe <corsair@gentoo.org> itpp-4.0.4.ebuild: Stable on ppc64; bug #223209 diff --git a/sci-libs/itpp/itpp-4.0.5.ebuild b/sci-libs/itpp/itpp-4.0.5.ebuild new file mode 100644 index 000000000000..26ba4bb260f6 --- /dev/null +++ b/sci-libs/itpp/itpp-4.0.5.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-4.0.5.ebuild,v 1.1 2008/07/30 22:24:45 markusle Exp $ + +inherit fortran flag-o-matic + +# we need this to prevent itpp's specialized debug lib +# (built with USE="debug" set) from being stripped +RESTRICT="strip" + +DESCRIPTION="C++ library of mathematical, signal processing and communication classes and functions" +LICENSE="GPL-2" +HOMEPAGE="http://itpp.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="blas debug doc fftw lapack minimal" + +RDEPEND="!minimal? ( fftw? ( >=sci-libs/fftw-3.0.0 ) ) + blas? ( virtual/blas + lapack? ( virtual/lapack ) )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen + virtual/latex-base )" + +pkg_setup() { + # lapack can only be used in conjunction with blas + if use lapack && ! use blas; then + die "USE=lapack requires USE=blas to be set" + fi +} + +src_compile() { + # turn off performance critical debug code + append-flags -DNDEBUG + + # make sure that -g is stripped always since we use + # RESTRICT=strip. If debug info is needed please enable + # the debug use flag and link against the debug *.so + filter-flags -g + + local blas_conf="--without-blas" + local lapack_conf="--without-lapack" + if use blas; then + if use lapack; then + blas_conf="--with-blas=$(pkg-config lapack --libs)" + lapack_conf="--with-lapack" + else + blas_conf="--with-blas=$(pkg-config blas --libs)" + fi + fi + + local fftw_conf="--without-fft"; + if use fftw; + then + fftw_conf="--with-fft=-lfftw3" + fi + + local myconf="--docdir=/usr/share/doc/${P}" + if use minimal; then + myconf="${myconf} --disable-comm --disable-fixed --disable-optim --disable-protocol --disable-signal --disable-srccode" + fi + + econf $(use_enable doc html-doc) \ + $(use_enable debug) \ + "${blas_conf}" \ + "${lapack_conf}" \ + "${fftw_conf}" \ + ${myconf} \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make install DESTDIR="${D}" || die "make install failed" + dodoc AUTHORS ChangeLog ChangeLog-2007 ChangeLog-2006 \ + ChangeLog-2005 INSTALL NEWS NEWS-3.10 NEWS-3.99 README TODO \ + || die "failed to install docs" +} |