public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Sebastien Fabbro" <bicatali@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/
Date: Thu, 29 Nov 2012 00:09:34 +0000 (UTC)	[thread overview]
Message-ID: <1354147748.74f60e1643bc61885d9639eb8c4c8a104dc394bc.bicatali@gentoo> (raw)

commit:     74f60e1643bc61885d9639eb8c4c8a104dc394bc
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 29 00:09:08 2012 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Nov 29 00:09:08 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=74f60e16

sci-libs/tmglib: Initial import

Package-Manager: portage-2.2.01.21313-prefix

---
 sci-libs/tmglib/ChangeLog           |    9 +++++
 sci-libs/tmglib/metadata.xml        |    9 +++++
 sci-libs/tmglib/tmglib-3.4.2.ebuild |   59 +++++++++++++++++++++++++++++++++++
 3 files changed, 77 insertions(+), 0 deletions(-)

diff --git a/sci-libs/tmglib/ChangeLog b/sci-libs/tmglib/ChangeLog
new file mode 100644
index 0000000..2bfcf4a
--- /dev/null
+++ b/sci-libs/tmglib/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-libs/tmglib
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*tmglib-3.4.2 (29 Nov 2012)
+
+  29 Nov 2012; Sébastien Fabbro <bicatali@gentoo.org> +metadata.xml,
+  +tmglib-3.4.2.ebuild:
+  sci-libs/tmglib: Initial import

diff --git a/sci-libs/tmglib/metadata.xml b/sci-libs/tmglib/metadata.xml
new file mode 100644
index 0000000..ea03b28
--- /dev/null
+++ b/sci-libs/tmglib/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang="en">
+  This is a library to generate matrices to test LAPACK
+  implementations.
+</longdescription>
+</pkgmetadata>

diff --git a/sci-libs/tmglib/tmglib-3.4.2.ebuild b/sci-libs/tmglib/tmglib-3.4.2.ebuild
new file mode 100644
index 0000000..62dda7a
--- /dev/null
+++ b/sci-libs/tmglib/tmglib-3.4.2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit cmake-utils fortran-2
+
+MYP=lapack-3.4.2
+
+DESCRIPTION="Test Matrix Generator library for LAPACK"
+HOMEPAGE="http://www.netlib.org/lapack/"
+SRC_URI="http://www.netlib.org/lapack/${MYP}.tgz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="static-libs"
+
+RDEPEND="virtual/lapack"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+S="${WORKDIR}/${MYP}"
+
+src_prepare() {
+	use static-libs && mkdir "${WORKDIR}/${PN}_static"
+}
+
+src_configure() {
+	tmg_configure() {
+		local mycmakeargs=(
+			-DUSE_OPTIMIZED_BLAS=ON
+			-DUSE_OPTIMIZED_LAPACK=ON
+			-DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)"
+			-DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs lapack)"
+			-DTESTING=ON
+			$@
+		)
+		cmake-utils_src_configure
+	}
+
+	tmg_configure -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF
+	use static-libs && \
+		CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" tmg_configure \
+		-DBUILD_SHARED_LIBS=OFF -DBUILD_STATIC_LIBS=ON
+}
+
+src_compile() {
+	cmake-utils_src_compile -C TESTING/MATGEN
+	use static-libs && CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" \
+		cmake-utils_src_compile -C TESTING/MATGEN
+}
+
+src_install() {
+	cmake-utils_src_install -C TESTING/MATGEN
+	use static-libs && CMAKE_BUILD_DIR="${WORKDIR}/${PN}_static" \
+			cmake-utils_src_install -C TESTING/MATGEN
+}


             reply	other threads:[~2012-11-29  0:09 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-29  0:09 Sebastien Fabbro [this message]
  -- strict thread matches above, loose matches on Subject: below --
2013-02-22 16:03 [gentoo-commits] proj/sci:master commit in: sci-libs/tmglib/ Justin Lecher
2014-01-28 19:01 Sebastien Fabbro
2015-11-30 18:33 Justin Lecher
2015-11-30 18:33 Justin Lecher
2020-09-22 15:11 Aisha Tammy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1354147748.74f60e1643bc61885d9639eb8c4c8a104dc394bc.bicatali@gentoo \
    --to=bicatali@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox