diff options
author | Sébastien Fabbro <sebfabbro@gmail.com> | 2012-01-24 17:18:37 +0000 |
---|---|---|
committer | Sébastien Fabbro <sebfabbro@gmail.com> | 2012-01-24 17:18:37 +0000 |
commit | 2d34eba65d33aaefb75f5d79c02f564f4df021a2 (patch) | |
tree | 880f64a90af756059593f1cb336716400555b0be /sci-libs/lapackpp | |
parent | sci-libs/atlas: Version bump (diff) | |
download | sci-2d34eba65d33aaefb75f5d79c02f564f4df021a2.tar.gz sci-2d34eba65d33aaefb75f5d79c02f564f4df021a2.tar.bz2 sci-2d34eba65d33aaefb75f5d79c02f564f4df021a2.zip |
sci-libs/lapackpp: Version bump
(Portage version: 2.1.10.41/git/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sci-libs/lapackpp')
-rw-r--r-- | sci-libs/lapackpp/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/lapackpp/Manifest | 2 | ||||
-rw-r--r-- | sci-libs/lapackpp/lapackpp-2.5.4.ebuild (renamed from sci-libs/lapackpp/lapackpp-2.5.3.ebuild) | 21 |
3 files changed, 16 insertions, 15 deletions
diff --git a/sci-libs/lapackpp/ChangeLog b/sci-libs/lapackpp/ChangeLog index b6feef7c9..3693bdb59 100644 --- a/sci-libs/lapackpp/ChangeLog +++ b/sci-libs/lapackpp/ChangeLog @@ -1,7 +1,13 @@ # ChangeLog for sci-libs/lapackpp -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*lapackpp-2.5.4 (24 Jan 2012) + + 24 Jan 2012; Sébastien Fabbro <bicatali@gentoo.org> -lapackpp-2.5.3.ebuild, + +lapackpp-2.5.4.ebuild: + Version bump + 20 Apr 2009; Sébastien Fabbro <bicatali@gentoo.org> lapackpp-2.5.3.ebuild: Fix DEPEND line diff --git a/sci-libs/lapackpp/Manifest b/sci-libs/lapackpp/Manifest index ec3c0a0c2..6253ac78f 100644 --- a/sci-libs/lapackpp/Manifest +++ b/sci-libs/lapackpp/Manifest @@ -1 +1 @@ -DIST lapackpp-2.5.3.tar.gz 571923 RMD160 8de5d07672e7701e4a7579cbd5d6934603c9eb1a SHA1 4a821b5e3d372f929efdc7d0f4da48f60b00f347 SHA256 7ef4cb4b4768bb6227f5f95b33d3ff93f6ddcd4fbf8a661917bb538b1554daeb +DIST lapackpp-2.5.4.tar.gz 635178 SHA256 776c4b2b09412479e1559bcec08a71cfbb162dfbe3f6fbd4da52cef3039cddbc SHA512 3c6c411a9fbb04880224c995dcdf69b4050f03691d087e6ddc0d93ffe149661511f570b8bc8c0837afdc03d5e14d39b5902890df3fe39c5eb67f7cddbbb10b6b WHIRLPOOL c31feb79db28dabe8824c9e0b06f761cc50255759040bdb21b1878ad5a0dccff3b10e759444c46c0bffeb9d9e3ea72eff6b9e2a0bb2db28cd5308a7940851054 diff --git a/sci-libs/lapackpp/lapackpp-2.5.3.ebuild b/sci-libs/lapackpp/lapackpp-2.5.4.ebuild index e38ab87ef..c33988238 100644 --- a/sci-libs/lapackpp/lapackpp-2.5.3.ebuild +++ b/sci-libs/lapackpp/lapackpp-2.5.4.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI=2 +EAPI=4 DESCRIPTION="C++ wrapper for LAPACK libraries" HOMEPAGE="http://lapackpp.sourceforge.net" @@ -11,7 +11,7 @@ LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="doc" +IUSE="doc static-libs" RDEPEND="virtual/blas virtual/lapack" @@ -26,23 +26,18 @@ src_prepare() { src_configure() { econf \ + $(use_enable static-libs static) \ --disable-atlas \ - --enable-static \ --with-blas="$(pkg-config --libs blas)" \ --with-lapack="$(pkg-config --libs lapack)" } src_compile() { - default_src_compile - if use doc; then - emake srcdoc || die "emake srcdoc failed" - fi + default + use doc && emake srcdoc } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc NEWS MAINTAINER RELEASE.NOTES README ChangeLog AUTHORS - if use doc; then - dohtml -r api-doc/html/* || die "dohtml failed" - fi + default + use doc && dohtml -r api-doc/html/* } |