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 1S3Io6-0005yF-IA for garchives@archives.gentoo.org; Fri, 02 Mar 2012 03:05:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2434AE0900; Fri, 2 Mar 2012 03:05:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EB582E0900 for ; Fri, 2 Mar 2012 03:05:13 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4389364776 for ; Fri, 2 Mar 2012 03:05:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 89A6BE5428 for ; Fri, 2 Mar 2012 03:05:10 +0000 (UTC) From: "Guillaume Horel" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guillaume Horel" Message-ID: <1330657456.3f2908235115e7b91baf8a1be975e7843bf4c010.guillaume_horel@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-ml/lacaml/ X-VCS-Repository: proj/sci X-VCS-Files: dev-ml/lacaml/ChangeLog dev-ml/lacaml/lacaml-6.0.4.ebuild X-VCS-Directories: dev-ml/lacaml/ X-VCS-Committer: guillaume_horel X-VCS-Committer-Name: Guillaume Horel X-VCS-Revision: 3f2908235115e7b91baf8a1be975e7843bf4c010 X-VCS-Branch: master Date: Fri, 2 Mar 2012 03:05:10 +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: e3f1d7c7-3f25-4692-8ee0-e03a34afee57 X-Archives-Hash: 08a0416b6664170d19382d90505a19f2 commit: 3f2908235115e7b91baf8a1be975e7843bf4c010 Author: Guillaume Horel gmail com> AuthorDate: Tue Feb 7 02:00:54 2012 +0000 Commit: Guillaume Horel gmail com> CommitDate: Fri Mar 2 03:04:16 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D3f290823 [dev-ml/lacaml] version bump --- dev-ml/lacaml/ChangeLog | 8 ++++++- dev-ml/lacaml/lacaml-6.0.4.ebuild | 40 +++++++++++++++++++++++++++++++= ++++++ 2 files changed, 47 insertions(+), 1 deletions(-) diff --git a/dev-ml/lacaml/ChangeLog b/dev-ml/lacaml/ChangeLog index f771bb4..d3d8095 100644 --- a/dev-ml/lacaml/ChangeLog +++ b/dev-ml/lacaml/ChangeLog @@ -1,7 +1,13 @@ # ChangeLog for dev-ml/lacaml -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ =20 +*lacaml-6.0.4 (02 Mar 2012) + + 02 Mar 2012; Guillaume Horel + +lacaml-6.0.4.ebuild: + version bump + *lacaml-5.5.2 (15 Nov 2011) =20 15 Nov 2011; Guillaume Horel diff --git a/dev-ml/lacaml/lacaml-6.0.4.ebuild b/dev-ml/lacaml/lacaml-6.0= .4.ebuild new file mode 100644 index 0000000..00c7a9a --- /dev/null +++ b/dev-ml/lacaml/lacaml-6.0.4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D4 + +inherit eutils findlib + +DESCRIPTION=3D"BLAS/LAPACK interface for OCaml" +HOMEPAGE=3D"http://forge.ocamlcore.org/projects/lacaml" +SRC_URI=3D"http://forge.ocamlcore.org/frs/download.php/806/${P}.tar.gz" + +LICENSE=3D"LGPL-2.1-linking-exception" +SLOT=3D"0" +KEYWORDS=3D"~x86" +IUSE=3D"doc" + +DEPEND=3D"dev-lang/ocaml[ocamlopt] + virtual/blas + virtual/lapack" +RDEPEND=3D"${DEPEND}" + +src_configure() { + ocaml setup.ml -configure \ + --override conf_cclib "$(pkg-config --libs blas) \ +$(pkg-config --libs lapack)" \ + --destdir "${ED}" \ + --prefix "/usr" \ + --docdir "/usr/share/${PF}/doc" || die "configuration failed" +} + +src_compile() { + emake + use doc && emake doc +} + +src_install() { + findlib_src_install + dodoc README.txt Changelog +}