From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RpoGN-0001Pg-Hf for garchives@archives.gentoo.org; Tue, 24 Jan 2012 21:50:50 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DDEBE0798; Tue, 24 Jan 2012 21:50:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 54C23E0798 for ; Tue, 24 Jan 2012 21:50:38 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A42FF1B402C for ; Tue, 24 Jan 2012 21:50:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id C213A80044 for ; Tue, 24 Jan 2012 21:50:36 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <2d34eba65d33aaefb75f5d79c02f564f4df021a2.bicatali@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/lapackpp/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/lapackpp/ChangeLog sci-libs/lapackpp/lapackpp-2.5.3.ebuild sci-libs/lapackpp/lapackpp-2.5.4.ebuild X-VCS-Directories: sci-libs/lapackpp/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: 2d34eba65d33aaefb75f5d79c02f564f4df021a2 Date: Tue, 24 Jan 2012 21:50:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: eb5581e0-bbe6-4884-a247-a95266332bb4 X-Archives-Hash: b3e7a39f4d623736f56eb6030b43830c commit: 2d34eba65d33aaefb75f5d79c02f564f4df021a2 Author: S=C3=A9bastien Fabbro gmail com> AuthorDate: Tue Jan 24 17:18:37 2012 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Tue Jan 24 17:18:37 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D2d34eba6 sci-libs/lapackpp: Version bump (Portage version: 2.1.10.41/git/Linux x86_64, unsigned Manifest commit) --- sci-libs/lapackpp/ChangeLog | 8 ++++++- ...lapackpp-2.5.3.ebuild =3D> lapackpp-2.5.4.ebuild} | 21 +++++++-----= ------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/sci-libs/lapackpp/ChangeLog b/sci-libs/lapackpp/ChangeLog index b6feef7..3693bdb 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: $ =20 +*lapackpp-2.5.4 (24 Jan 2012) + + 24 Jan 2012; S=C3=A9bastien Fabbro -lapackpp-2.5= .3.ebuild, + +lapackpp-2.5.4.ebuild: + Version bump + 20 Apr 2009; S=C3=A9bastien Fabbro lapackpp-2.5.3.ebuild: Fix DEPEND line diff --git a/sci-libs/lapackpp/lapackpp-2.5.3.ebuild b/sci-libs/lapackpp/= lapackpp-2.5.4.ebuild similarity index 64% rename from sci-libs/lapackpp/lapackpp-2.5.3.ebuild rename to sci-libs/lapackpp/lapackpp-2.5.4.ebuild index e38ab87..c339882 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: $ =20 -EAPI=3D2 +EAPI=3D4 =20 DESCRIPTION=3D"C++ wrapper for LAPACK libraries" HOMEPAGE=3D"http://lapackpp.sourceforge.net" @@ -11,7 +11,7 @@ LICENSE=3D"LGPL-2.1" =20 SLOT=3D"0" KEYWORDS=3D"~amd64 ~x86" -IUSE=3D"doc" +IUSE=3D"doc static-libs" =20 RDEPEND=3D"virtual/blas virtual/lapack" @@ -26,23 +26,18 @@ src_prepare() { =20 src_configure() { econf \ + $(use_enable static-libs static) \ --disable-atlas \ - --enable-static \ --with-blas=3D"$(pkg-config --libs blas)" \ --with-lapack=3D"$(pkg-config --libs lapack)" } =20 src_compile() { - default_src_compile - if use doc; then - emake srcdoc || die "emake srcdoc failed" - fi + default + use doc && emake srcdoc } =20 src_install() { - emake DESTDIR=3D"${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/* }