From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B7E08138010 for ; Thu, 1 Nov 2012 19:24:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1986621C009; Thu, 1 Nov 2012 19:24:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6984121C009 for ; Thu, 1 Nov 2012 19:24:16 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D22F33D97E for ; Thu, 1 Nov 2012 19:24:15 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2162) id 210A321600; Thu, 1 Nov 2012 19:24:14 +0000 (UTC) From: "Sebastien Fabbro (bicatali)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, bicatali@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/armadillo: armadillo-3.4.3.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: armadillo-3.4.3.ebuild ChangeLog X-VCS-Directories: sci-libs/armadillo X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121101192414.210A321600@flycatcher.gentoo.org> Date: Thu, 1 Nov 2012 19:24:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d661fa12-fc75-4dd4-ae73-4aa5471972ea X-Archives-Hash: 076331b8df9fa3beb25a45e45a750467 bicatali 12/11/01 19:24:14 Modified: ChangeLog Added: armadillo-3.4.3.ebuild Log: Version bump (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360) Revision Changes Path 1.17 sci-libs/armadillo/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-libs/armadillo/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 20 Jul 2012 21:51:23 -0000 1.16 +++ ChangeLog 1 Nov 2012 19:24:13 -0000 1.17 @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/armadillo # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/ChangeLog,v 1.16 2012/07/20 21:51:23 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/ChangeLog,v 1.17 2012/11/01 19:24:13 bicatali Exp $ + +*armadillo-3.4.3 (01 Nov 2012) + + 01 Nov 2012; Sébastien Fabbro +armadillo-3.4.3.ebuild: + Version bump *armadillo-3.2.4 (20 Jul 2012) 1.1 sci-libs/armadillo/armadillo-3.4.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/armadillo-3.4.3.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/armadillo/armadillo-3.4.3.ebuild?rev=1.1&content-type=text/plain Index: armadillo-3.4.3.ebuild =================================================================== # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/armadillo-3.4.3.ebuild,v 1.1 2012/11/01 19:24:13 bicatali Exp $ EAPI=4 CMAKE_IN_SOURCE_BUILD=1 inherit cmake-utils DESCRIPTION="Streamlined C++ linear algebra library" HOMEPAGE="http://arma.sourceforge.net/" SRC_URI="mirror://sourceforge/arma/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" IUSE="atlas blas doc examples lapack" RDEPEND=">=dev-libs/boost-1.34 atlas? ( sci-libs/lapack-atlas ) blas? ( virtual/blas ) lapack? ( virtual/lapack )" DEPEND="${DEPEND} virtual/pkgconfig" src_prepare() { # avoid the automagic cmake macros sed -i -e '/ARMA_Find/d' CMakeLists.txt || die } src_configure() { local mycmakeargs=() if use blas; then mycmakeargs+=( -DBLAS_FOUND=ON -DBLAS_LIBRARIES="$(pkg-config --libs blas)" ) fi if use lapack; then mycmakeargs+=( -DLAPACK_FOUND=ON -DLAPACK_LIBRARIES="$(pkg-config --libs lapack)" ) fi if use atlas; then mycmakeargs=( -DARMA_USE_ATLAS=ON -DCBLAS_FOUND=ON -DCLAPACK_FOUND=ON -DATLAS_INCLUDE_DIR="${EPREFIX}/usr/include/atlas/" -DCBLAS_LIBRARIES="$(pkg-config --libs cblas)" -DCLAPACK_LIBRARIES="-L${EPREFIX}/usr/lib64/lapack/atlas -llapack" ) fi cmake-utils_src_configure } src_install() { cmake-utils_src_install dodoc README.txt use doc && dodoc docs/*pdf if use examples; then insinto /usr/share/doc/${PF} doins -r examples fi }