From f0b430bbc3335c075d96fef78d7a6a9609dc9f7c Mon Sep 17 00:00:00 2001 From: Markus Dittrich Date: Wed, 11 Apr 2007 13:36:27 +0000 Subject: Version bump and removed old version. (Portage version: 2.1.2.3) --- sci-libs/itpp/ChangeLog | 8 ++++- sci-libs/itpp/files/digest-itpp-3.10.10 | 3 ++ sci-libs/itpp/files/digest-itpp-3.10.8 | 3 -- sci-libs/itpp/itpp-3.10.10.ebuild | 58 +++++++++++++++++++++++++++++++++ sci-libs/itpp/itpp-3.10.8.ebuild | 58 --------------------------------- 5 files changed, 68 insertions(+), 62 deletions(-) create mode 100644 sci-libs/itpp/files/digest-itpp-3.10.10 delete mode 100644 sci-libs/itpp/files/digest-itpp-3.10.8 create mode 100644 sci-libs/itpp/itpp-3.10.10.ebuild delete mode 100644 sci-libs/itpp/itpp-3.10.8.ebuild (limited to 'sci-libs') diff --git a/sci-libs/itpp/ChangeLog b/sci-libs/itpp/ChangeLog index d5c47000cecc..ab1dbb6c057b 100644 --- a/sci-libs/itpp/ChangeLog +++ b/sci-libs/itpp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-libs/itpp # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.31 2007/03/23 13:41:31 markusle Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.32 2007/04/11 13:36:27 markusle Exp $ + +*itpp-3.10.10 (11 Apr 2007) + + 11 Apr 2007; Markus Dittrich -itpp-3.10.8.ebuild, + +itpp-3.10.10.ebuild: + Version bump and removed old version. *itpp-3.99.1 (23 Mar 2007) diff --git a/sci-libs/itpp/files/digest-itpp-3.10.10 b/sci-libs/itpp/files/digest-itpp-3.10.10 new file mode 100644 index 000000000000..fb33d85dedc7 --- /dev/null +++ b/sci-libs/itpp/files/digest-itpp-3.10.10 @@ -0,0 +1,3 @@ +MD5 8effb412028ce990d076489128eaab90 itpp-3.10.10.tar.bz2 800010 +RMD160 7e7f730bc6a08067b9e464eddbc0aec402d7797f itpp-3.10.10.tar.bz2 800010 +SHA256 f3e100647c331ba75dd9483b337b7f43e4f7e9c9554af3f761dffb6e58525d34 itpp-3.10.10.tar.bz2 800010 diff --git a/sci-libs/itpp/files/digest-itpp-3.10.8 b/sci-libs/itpp/files/digest-itpp-3.10.8 deleted file mode 100644 index 6df28eb06cd9..000000000000 --- a/sci-libs/itpp/files/digest-itpp-3.10.8 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 f38bd39dbdae4836a493dd8c625b840d itpp-3.10.8.tar.bz2 793789 -RMD160 f8b2d8ae00adb557f16d48dea5c00290388bb11b itpp-3.10.8.tar.bz2 793789 -SHA256 711ab3377fbc0a94db6322413c60caeca7399037498fc3cf159b835fe266faae itpp-3.10.8.tar.bz2 793789 diff --git a/sci-libs/itpp/itpp-3.10.10.ebuild b/sci-libs/itpp/itpp-3.10.10.ebuild new file mode 100644 index 000000000000..b19a0f1cddc7 --- /dev/null +++ b/sci-libs/itpp/itpp-3.10.10.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-3.10.10.ebuild,v 1.1 2007/04/11 13:36:27 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="~amd64 ppc ppc64 sparc 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 + virtual/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 || \ + die "failed to install docs" +} diff --git a/sci-libs/itpp/itpp-3.10.8.ebuild b/sci-libs/itpp/itpp-3.10.8.ebuild deleted file mode 100644 index f35c5058d53f..000000000000 --- a/sci-libs/itpp/itpp-3.10.8.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-3.10.8.ebuild,v 1.4 2007/02/03 22:02:01 nixnut 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="~amd64 ~ppc ~ppc64 ~sparc ~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 - virtual/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" -} -- cgit v1.2.3-65-gdbad