diff options
author | Markus Dittrich <markusle@gentoo.org> | 2006-05-23 14:44:16 +0000 |
---|---|---|
committer | Markus Dittrich <markusle@gentoo.org> | 2006-05-23 14:44:16 +0000 |
commit | 3154800e4b0b268dcf819e8e0f5e6c6f958c370f (patch) | |
tree | caee23da3e7b95c141bbd824849276e56669e837 | |
parent | - removed obsolete vuln ebuilds (diff) | |
download | gentoo-2-3154800e4b0b268dcf819e8e0f5e6c6f958c370f.tar.gz gentoo-2-3154800e4b0b268dcf819e8e0f5e6c6f958c370f.tar.bz2 gentoo-2-3154800e4b0b268dcf819e8e0f5e6c6f958c370f.zip |
Version bump. This fixes bug #133411.
(Portage version: 2.1_rc2)
-rw-r--r-- | sci-libs/itpp/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/itpp/files/digest-itpp-3.10.2 | 3 | ||||
-rw-r--r-- | sci-libs/itpp/itpp-3.10.2.ebuild | 58 |
3 files changed, 68 insertions, 1 deletions
diff --git a/sci-libs/itpp/ChangeLog b/sci-libs/itpp/ChangeLog index a18fd51c3b3c..2aa2d84a1b6f 100644 --- a/sci-libs/itpp/ChangeLog +++ b/sci-libs/itpp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-libs/itpp # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.4 2006/04/12 19:05:23 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.5 2006/05/23 14:44:16 markusle Exp $ + +*itpp-3.10.2 (23 May 2006) + + 23 May 2006; Markus Dittrich <markusle@gentoo.org> +itpp-3.10.2.ebuild: + Version bump. Thanks much to Adam Piatyszek <ediap@et.put.poznan.pl> + for his ebuild. This fixes bug #133411. *itpp-3.10.1 (12 Apr 2006) diff --git a/sci-libs/itpp/files/digest-itpp-3.10.2 b/sci-libs/itpp/files/digest-itpp-3.10.2 new file mode 100644 index 000000000000..917d60e4225c --- /dev/null +++ b/sci-libs/itpp/files/digest-itpp-3.10.2 @@ -0,0 +1,3 @@ +MD5 fa6bde143e2ed772e45d66f1de1ba9d2 itpp-3.10.2.tar.bz2 794771 +RMD160 097fbd13a5cc8351e8f9ea0946ec5f71ff6857d8 itpp-3.10.2.tar.bz2 794771 +SHA256 5392272b04e6974886e3ffb4f85938219a1891ee7c665b69a19c2e31ab8665ac itpp-3.10.2.tar.bz2 794771 diff --git a/sci-libs/itpp/itpp-3.10.2.ebuild b/sci-libs/itpp/itpp-3.10.2.ebuild new file mode 100644 index 000000000000..c8cd8c6ecfa5 --- /dev/null +++ b/sci-libs/itpp/itpp-3.10.2.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-3.10.2.ebuild,v 1.1 2006/05/23 14:44:16 markusle Exp $ + +inherit fortran + +DESCRIPTION="IT++ is a C++ library of mathematical, signal processing, speech processing, and communications classes and functions" +LICENSE="GPL-2" +HOMEPAGE="http://itpp.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +SLOT="0" +KEYWORDS="~x86" +IUSE="blas cblas debug doc fftw lapack" + +DEPEND="fftw? ( >=sci-libs/fftw-3.0.0 ) + blas? ( virtual/blas + cblas? ( || ( >=sci-libs/gsl-1.4 + >=sci-libs/acml-2.5.3 + >=sci-libs/blas-atlas-3.6.0 + sci-libs/cblas-reference ) ) + lapack? ( virtual/lapack ) ) + doc? ( app-doc/doxygen + app-text/tetex )" + +pkg_setup() { + # lapack/cblas can only be used in conjunction with blas + if use cblas && ! use blas; then + die "USE=cblas requires USE=blas to be set" + fi + if use lapack && ! use blas; then + die "USE=lapack requires USE=blas to be set" + fi +} + +src_compile() { + local myconf + + if use blas; then + myconf="--with-blas=-lblas" + else + myconf="--without-blas" + fi + econf $(use_enable doc html-doc) \ + $(use_enable debug) \ + $(use_with cblas) \ + $(use_with lapack) \ + $(use_with fftw fft) \ + "$myconf" \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make install DESTDIR=${D} || die "make install failed" + dodoc AUTHORS ChangeLog INSTALL NEWS README TODO || \ + die "failed to install docs" +} |