diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2014-01-15 06:01:25 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2014-01-15 06:01:25 +0000 |
commit | 011a4ac21abc8808bd1ac24991ce9c5f061118f0 (patch) | |
tree | 888198f5c23eb4949c2e49dd5f1c95a623205158 /sci-libs | |
parent | Version bump (diff) | |
download | gentoo-2-011a4ac21abc8808bd1ac24991ce9c5f061118f0.tar.gz gentoo-2-011a4ac21abc8808bd1ac24991ce9c5f061118f0.tar.bz2 gentoo-2-011a4ac21abc8808bd1ac24991ce9c5f061118f0.zip |
Version bump
(Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/itpp/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/itpp/itpp-4.3.1.ebuild | 45 |
2 files changed, 52 insertions, 2 deletions
diff --git a/sci-libs/itpp/ChangeLog b/sci-libs/itpp/ChangeLog index 279298dd5ad0..5ff61f1ca270 100644 --- a/sci-libs/itpp/ChangeLog +++ b/sci-libs/itpp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/itpp -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.118 2013/06/25 18:12:45 bicatali Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/ChangeLog,v 1.119 2014/01/15 06:01:25 bicatali Exp $ + +*itpp-4.3.1 (15 Jan 2014) + + 15 Jan 2014; Sébastien Fabbro <bicatali@gentoo.org> +itpp-4.3.1.ebuild: + Version bump *itpp-4.3.0 (25 Jun 2013) diff --git a/sci-libs/itpp/itpp-4.3.1.ebuild b/sci-libs/itpp/itpp-4.3.1.ebuild new file mode 100644 index 000000000000..ed4ca8407756 --- /dev/null +++ b/sci-libs/itpp/itpp-4.3.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/itpp/itpp-4.3.1.ebuild,v 1.1 2014/01/15 06:01:25 bicatali Exp $ + +EAPI=5 + +inherit cmake-utils + +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 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc" + +RDEPEND=" + virtual/blas + virtual/lapack + >=sci-libs/fftw-3" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen virtual/latex-base )" + +DOCS=(ChangeLog NEWS AUTHORS README) + +src_prepare() { + # gentoo redefines the CMAKE_BUILD_TYPE + sed -i \ + -e 's/CMAKE_BUILD_TYPE STREQUAL Release/NOT CMAKE_BUILD_TYPE STREQUAL Debug/' \ + CMakeLists.txt || die + # respect gentoo doc dir + sed -i \ + -e "s:share/doc/itpp:share/doc/${PF}:" \ + itpp/CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + -DBLA_VENDOR=Generic + $(cmake-utils_use doc HTML_DOCS) + ) + cmake-utils_src_configure +} |