* [gentoo-commits] proj/sci:master commit in: sci-libs/iml/files/, sci-libs/iml/
@ 2015-12-21 10:38 Justin Lecher
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher @ 2015-12-21 10:38 UTC (permalink / raw
To: gentoo-commits
commit: 82ab93d397b18e284a7c52ae4457dc22d137ec3e
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 21 10:38:05 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Dec 21 10:38:05 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=82ab93d3
sci-libs/iml: Version Bump, drop old
Package-Manager: portage-2.2.26
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
.../iml/files/iml-1.0.3-fix-undefined-symbol.patch | 11 ---------
sci-libs/iml/files/iml-1.0.3-repl_removal.patch | 27 ----------------------
.../iml-1.0.3-use-any-cblas-implementation.patch | 14 -----------
.../iml/{iml-1.0.3-r2.ebuild => iml-1.0.5.ebuild} | 10 ++++----
4 files changed, 5 insertions(+), 57 deletions(-)
diff --git a/sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch b/sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch
deleted file mode 100644
index 53b1425..0000000
--- a/sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/nullspace.c.orig 2009-11-23 15:01:49.200283384 +0000
-+++ src/nullspace.c 2009-11-23 15:03:00.862295995 +0000
-@@ -253,7 +253,7 @@
- for (i = 0; i < m; i++) {
- for (j = 0; j < m; j++)
- mpz_init_set_ui(mp_N[i * m + j], 0);
-- mpz_init_ui(mp_N[i * m + i], 1);
-+ mpz_set_ui(mp_N[i * m + i], 1);
- }
- *mp_N_pass = mp_N;
- } else { /* r>0 and s>0 */
diff --git a/sci-libs/iml/files/iml-1.0.3-repl_removal.patch b/sci-libs/iml/files/iml-1.0.3-repl_removal.patch
deleted file mode 100644
index 0be719b..0000000
--- a/sci-libs/iml/files/iml-1.0.3-repl_removal.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- configure.ac.orig 2011-01-13 22:39:44.640530988 +1300
-+++ configure.ac 2011-01-13 22:40:15.462530988 +1300
-@@ -63,7 +63,6 @@
- AC_OUTPUT([
- Makefile
- config/Makefile
-- repl/Makefile
- src/Makefile
- doc/Makefile
- examples/Makefile
---- Makefile.am.orig 2011-01-13 22:40:32.171530988 +1300
-+++ Makefile.am 2011-01-13 22:41:39.874530988 +1300
-@@ -1,3 +1,3 @@
- EXTRA_DIST = bootstrap
-
--SUBDIRS = repl config src doc tests examples
-+SUBDIRS = config src doc tests examples
---- src/Makefile.am.orig 2011-01-13 22:41:53.012530988 +1300
-+++ src/Makefile.am 2011-01-13 22:42:12.585530988 +1300
-@@ -30,6 +30,5 @@
- nullspace.c
-
- libiml_la_CFLAGS = $(AM_CFLAGS)
--libiml_la_LIBADD = $(EXTERNLIB) \
-- $(top_builddir)/repl/librepl.la
-+libiml_la_LIBADD = $(EXTERNLIB)
- libiml_la_LDFLAGS = -version-info 1:0:1
diff --git a/sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch b/sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch
deleted file mode 100644
index c1dd09c..0000000
--- a/sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- configure.ac.orig 2008-06-15 23:51:30.000000000 +0000
-+++ configure.ac 2010-08-07 08:38:44.689081000 +0000
-@@ -55,10 +55,7 @@
- respectively when running configure.
- )])
-
--IML_CHECK_ATLAS(,,[AC_MSG_ERROR(
--ATLAS not found!
--ATLAS version 3.0 or greater is required for this library to compile. Please make sure ATLAS is installed and specify the header and libraries location with the options --with-atlas-include=<path> and --with-atlas-lib=<path> respectively when running configure.
--)])
-+PKG_CHECK_MODULES([ATLAS], [cblas])
-
- AC_SUBST(LDFLAGS)
- AC_SUBST(ac_aux_dir)
diff --git a/sci-libs/iml/iml-1.0.3-r2.ebuild b/sci-libs/iml/iml-1.0.5.ebuild
similarity index 74%
rename from sci-libs/iml/iml-1.0.3-r2.ebuild
rename to sci-libs/iml/iml-1.0.5.ebuild
index abdcaf1..d4bf626 100644
--- a/sci-libs/iml/iml-1.0.3-r2.ebuild
+++ b/sci-libs/iml/iml-1.0.5.ebuild
@@ -4,11 +4,13 @@
EAPI=5
+AUTOTOOLS_AUTORECONF=yes
+
inherit autotools-utils
DESCRIPTION="Integer Matrix Library"
HOMEPAGE="http://www.cs.uwaterloo.ca/~astorjoh/iml.html"
-SRC_URI="http://www.cs.uwaterloo.ca/~astorjoh/${P}.tar.gz"
+SRC_URI="http://www.cs.uwaterloo.ca/~astorjoh/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
@@ -20,13 +22,11 @@ RESTRICT="mirror"
DEPEND="virtual/cblas"
RDEPEND="${DEPEND}"
-AUTOTOOLS_AUTORECONF=yes
AT_M4DIR="config"
DOCS=( AUTHORS ChangeLog README )
+
PATCHES=(
- "${FILESDIR}"/${P}-use-any-cblas-implementation.patch
- "${FILESDIR}"/${P}-fix-undefined-symbol.patch
- "${FILESDIR}"/${P}-repl_removal.patch
+ "${FILESDIR}"/${PN}-1.0.4-use-any-cblas-implementation.patch
)
src_configure() {
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/iml/files/, sci-libs/iml/
@ 2019-08-19 7:51 Benda XU
0 siblings, 0 replies; 3+ messages in thread
From: Benda XU @ 2019-08-19 7:51 UTC (permalink / raw
To: gentoo-commits
commit: b5ed6252133a0cd6b8debba8cf560a090a4d35ea
Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 19 07:50:13 2019 +0000
Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
CommitDate: Mon Aug 19 07:51:14 2019 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b5ed6252
sci-libs/iml: migrated into ::gentoo.
.../iml-1.0.4-use-any-cblas-implementation.patch | 22 -------------
sci-libs/iml/iml-1.0.4.ebuild | 34 --------------------
sci-libs/iml/iml-1.0.5.ebuild | 36 ----------------------
sci-libs/iml/metadata.xml | 9 ------
4 files changed, 101 deletions(-)
diff --git a/sci-libs/iml/files/iml-1.0.4-use-any-cblas-implementation.patch b/sci-libs/iml/files/iml-1.0.4-use-any-cblas-implementation.patch
deleted file mode 100644
index 3d88a3906..000000000
--- a/sci-libs/iml/files/iml-1.0.4-use-any-cblas-implementation.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Patch to detect ATLAS or cblas. Ported from 1.0.3 to 1.0.4.
-
-Patch by Marius Brehler.
---- configure.ac
-+++ configure.ac
-@@ -76,15 +76,7 @@ location with the options --with-gmp-inc
- respectively when running configure.
- )])
-
--IML_CHECK_CBLAS(,,[AC_MSG_WARN(
--CBLAS not found!
--Please make sure that --with-cblas=<linker flags> and optional --with-cblas-include=<path> and --with-cblas-lib=<path> are correctly set.
--Trying legacy ATLAS configuration.)
--IML_CHECK_ATLAS(,,[AC_MSG_ERROR(
--ATLAS not found!
--ATLAS version 3.0 or greater is required for this library to compile. Please make sure ATLAS is installed and specify the header and libraries location with the options --with-atlas-include=<path> and --with-atlas-lib=<path> respectively when running configure.)
--])
--])
-+PKG_CHECK_MODULES([ATLAS], [cblas])
-
- AC_SUBST(LIBIML_LDFLAGS)
- AC_SUBST(LDFLAGS)
diff --git a/sci-libs/iml/iml-1.0.4.ebuild b/sci-libs/iml/iml-1.0.4.ebuild
deleted file mode 100644
index 9c3e94a24..000000000
--- a/sci-libs/iml/iml-1.0.4.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils
-
-DESCRIPTION="Integer Matrix Library"
-HOMEPAGE="http://www.cs.uwaterloo.ca/~astorjoh/iml.html"
-SRC_URI="http://www.cs.uwaterloo.ca/~astorjoh/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs"
-
-RESTRICT="mirror"
-
-DEPEND="virtual/cblas"
-RDEPEND="${DEPEND}"
-
-AUTOTOOLS_AUTORECONF=yes
-AT_M4DIR="config"
-DOCS=( AUTHORS ChangeLog README )
-PATCHES=(
- "${FILESDIR}"/${P}-use-any-cblas-implementation.patch
-)
-
-src_configure() {
- myeconfargs=(
- --with-default="${EPREFIX}"/usr
- )
- autotools-utils_src_configure
-}
diff --git a/sci-libs/iml/iml-1.0.5.ebuild b/sci-libs/iml/iml-1.0.5.ebuild
deleted file mode 100644
index 67b4d0153..000000000
--- a/sci-libs/iml/iml-1.0.5.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-AUTOTOOLS_AUTORECONF=yes
-
-inherit autotools-utils
-
-DESCRIPTION="Integer Matrix Library"
-HOMEPAGE="http://www.cs.uwaterloo.ca/~astorjoh/iml.html"
-SRC_URI="http://www.cs.uwaterloo.ca/~astorjoh/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs"
-
-RESTRICT="mirror"
-
-DEPEND="virtual/cblas"
-RDEPEND="${DEPEND}"
-
-AT_M4DIR="config"
-DOCS=( AUTHORS ChangeLog README )
-
-PATCHES=(
- "${FILESDIR}"/${PN}-1.0.4-use-any-cblas-implementation.patch
-)
-
-src_configure() {
- myeconfargs=(
- --with-default="${EPREFIX}"/usr
- )
- autotools-utils_src_configure
-}
diff --git a/sci-libs/iml/metadata.xml b/sci-libs/iml/metadata.xml
deleted file mode 100644
index 673326db1..000000000
--- a/sci-libs/iml/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription>a free library of C source code which implements algorithms for computing exact solutions to dense systems of linear equations over the integers</longdescription>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/iml/files/, sci-libs/iml/
@ 2012-09-13 2:24 Francois Bissey
0 siblings, 0 replies; 3+ messages in thread
From: Francois Bissey @ 2012-09-13 2:24 UTC (permalink / raw
To: gentoo-commits
commit: 69a043dd2d73299369c1b3f1f88422c1da307bc5
Author: François Bissey <francois.bissey <AT> canterbury <DOT> ac <DOT> nz>
AuthorDate: Thu Sep 13 02:22:55 2012 +0000
Commit: Francois Bissey <f.r.bissey <AT> massey <DOT> ac <DOT> nz>
CommitDate: Thu Sep 13 02:22:55 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=69a043dd
Bump iml to the same level as s-o-g overlay, make it work on prefix including OS X.
---
sci-libs/iml/ChangeLog | 12 +++++-
sci-libs/iml/files/iml-1.0.3-cblas.patch | 41 -------------------
....patch => iml-1.0.3-fix-undefined-symbol.patch} | 6 +-
sci-libs/iml/files/iml-1.0.3-repl_removal.patch | 27 ++++++++++++
.../iml-1.0.3-use-any-cblas-implementation.patch | 14 ++++++
sci-libs/iml/iml-1.0.3-r2.ebuild | 37 +++++++++++++++++
sci-libs/iml/iml-1.0.3.ebuild | 43 --------------------
7 files changed, 92 insertions(+), 88 deletions(-)
diff --git a/sci-libs/iml/ChangeLog b/sci-libs/iml/ChangeLog
index 7310d1e..8bee998 100644
--- a/sci-libs/iml/ChangeLog
+++ b/sci-libs/iml/ChangeLog
@@ -1,7 +1,17 @@
# ChangeLog for sci-libs/iml
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*iml-1.0.3-r2 (13 Sep 2012)
+
+ 13 Sep 2012; François Bissey <francois.bissey@canterbury.ac.nz>
+ -iml-1.0.3.ebuild, +iml-1.0.3-r2.ebuild, -files/iml-1.0.3-cblas.patch,
+ +files/iml-1.0.3-fix-undefined-symbol.patch,
+ +files/iml-1.0.3-repl_removal.patch,
+ +files/iml-1.0.3-use-any-cblas-implementation.patch,
+ -files/fix-undefined-symbol.patch:
+ bring to s-o-g level
+
*iml-1.0.3 (23 Nov 2009)
23 Nov 2009; François Bissey <f.r.bissey@massey.ac.nz> +iml-1.0.3.ebuild,
diff --git a/sci-libs/iml/files/iml-1.0.3-cblas.patch b/sci-libs/iml/files/iml-1.0.3-cblas.patch
deleted file mode 100644
index c9a6a1f..0000000
--- a/sci-libs/iml/files/iml-1.0.3-cblas.patch
+++ /dev/null
@@ -1,41 +0,0 @@
---- configure.ac.orig 2009-11-23 09:30:12.000000000 +1300
-+++ configure.ac 2009-11-23 11:35:59.000000000 +1300
-@@ -3,6 +3,7 @@
- AC_PREREQ(2.59)
- AC_INIT(IML, 1.0.3)
- AC_CONFIG_AUX_DIR(config)
-+AC_CONFIG_MACRO_DIR(config)
- AM_CONFIG_HEADER(config.h:config-h.in)
- AC_CONFIG_SRCDIR([src/RNSop.c])
- AM_INIT_AUTOMAKE
-@@ -55,11 +56,18 @@
- respectively when running configure.
- )])
-
--IML_CHECK_ATLAS(,,[AC_MSG_ERROR(
--ATLAS not found!
--ATLAS version 3.0 or greater is required for this library to compile. Please make sure ATLAS is installed and specify the header and libraries location with the options --with-atlas-include=<path> and --with-atlas-lib=<path> respectively when running configure.
--)])
-+AC_CHECK_HEADERS([cblas.h],
-+ [cblas_headers_found=yes; break;])
-+
-+AS_IF([test "x$cblas_headers_found" != "xyes"],
-+ [AC_MSG_ERROR([Unable to find the cblas headers check your installation])])
-+
-+AC_ARG_WITH(cblas-lib,
-+ AC_HELP_STRING([--with-cblas-lib=<lib>],[Specify the flags for cblas.]),
-+ with_cblas_lib=$withval)
-+ATLAS_LIBS="$with_cblas_lib"
-
-+AC_SUBST(ATLAS_LIBS)
- AC_SUBST(LDFLAGS)
- AC_SUBST(ac_aux_dir)
-
---- Makefile.am~ 2009-11-23 11:38:44.000000000 +1300
-+++ Makefile.am 2009-11-23 11:38:44.000000000 +1300
-@@ -1,3 +1,5 @@
-+ACLOCAL_AMFLAGS = -I config
-+
- EXTRA_DIST = bootstrap
-
- SUBDIRS = repl config src doc tests examples
diff --git a/sci-libs/iml/files/fix-undefined-symbol.patch b/sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch
similarity index 59%
rename from sci-libs/iml/files/fix-undefined-symbol.patch
rename to sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch
index 1521d15..53b1425 100644
--- a/sci-libs/iml/files/fix-undefined-symbol.patch
+++ b/sci-libs/iml/files/iml-1.0.3-fix-undefined-symbol.patch
@@ -1,11 +1,11 @@
---- nullspace.c.orig 2008-08-12 15:17:18.000000000 +0200
-+++ nullspace.c 2008-08-12 15:12:15.000000000 +0200
+--- src/nullspace.c.orig 2009-11-23 15:01:49.200283384 +0000
++++ src/nullspace.c 2009-11-23 15:03:00.862295995 +0000
@@ -253,7 +253,7 @@
for (i = 0; i < m; i++) {
for (j = 0; j < m; j++)
mpz_init_set_ui(mp_N[i * m + j], 0);
- mpz_init_ui(mp_N[i * m + i], 1);
-+ mpz_init_set_ui(mp_N[i * m + i], 1);
++ mpz_set_ui(mp_N[i * m + i], 1);
}
*mp_N_pass = mp_N;
} else { /* r>0 and s>0 */
diff --git a/sci-libs/iml/files/iml-1.0.3-repl_removal.patch b/sci-libs/iml/files/iml-1.0.3-repl_removal.patch
new file mode 100644
index 0000000..0be719b
--- /dev/null
+++ b/sci-libs/iml/files/iml-1.0.3-repl_removal.patch
@@ -0,0 +1,27 @@
+--- configure.ac.orig 2011-01-13 22:39:44.640530988 +1300
++++ configure.ac 2011-01-13 22:40:15.462530988 +1300
+@@ -63,7 +63,6 @@
+ AC_OUTPUT([
+ Makefile
+ config/Makefile
+- repl/Makefile
+ src/Makefile
+ doc/Makefile
+ examples/Makefile
+--- Makefile.am.orig 2011-01-13 22:40:32.171530988 +1300
++++ Makefile.am 2011-01-13 22:41:39.874530988 +1300
+@@ -1,3 +1,3 @@
+ EXTRA_DIST = bootstrap
+
+-SUBDIRS = repl config src doc tests examples
++SUBDIRS = config src doc tests examples
+--- src/Makefile.am.orig 2011-01-13 22:41:53.012530988 +1300
++++ src/Makefile.am 2011-01-13 22:42:12.585530988 +1300
+@@ -30,6 +30,5 @@
+ nullspace.c
+
+ libiml_la_CFLAGS = $(AM_CFLAGS)
+-libiml_la_LIBADD = $(EXTERNLIB) \
+- $(top_builddir)/repl/librepl.la
++libiml_la_LIBADD = $(EXTERNLIB)
+ libiml_la_LDFLAGS = -version-info 1:0:1
diff --git a/sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch b/sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch
new file mode 100644
index 0000000..c1dd09c
--- /dev/null
+++ b/sci-libs/iml/files/iml-1.0.3-use-any-cblas-implementation.patch
@@ -0,0 +1,14 @@
+--- configure.ac.orig 2008-06-15 23:51:30.000000000 +0000
++++ configure.ac 2010-08-07 08:38:44.689081000 +0000
+@@ -55,10 +55,7 @@
+ respectively when running configure.
+ )])
+
+-IML_CHECK_ATLAS(,,[AC_MSG_ERROR(
+-ATLAS not found!
+-ATLAS version 3.0 or greater is required for this library to compile. Please make sure ATLAS is installed and specify the header and libraries location with the options --with-atlas-include=<path> and --with-atlas-lib=<path> respectively when running configure.
+-)])
++PKG_CHECK_MODULES([ATLAS], [cblas])
+
+ AC_SUBST(LDFLAGS)
+ AC_SUBST(ac_aux_dir)
diff --git a/sci-libs/iml/iml-1.0.3-r2.ebuild b/sci-libs/iml/iml-1.0.3-r2.ebuild
new file mode 100644
index 0000000..df8342c
--- /dev/null
+++ b/sci-libs/iml/iml-1.0.3-r2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="4"
+
+inherit autotools-utils
+
+DESCRIPTION="Integer Matrix Library"
+HOMEPAGE="http://www.cs.uwaterloo.ca/~astorjoh/iml.html"
+SRC_URI="http://www.cs.uwaterloo.ca/~astorjoh/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="static-libs"
+
+RESTRICT="mirror"
+
+DEPEND="virtual/cblas"
+RDEPEND="${DEPEND}"
+
+AUTOTOOLS_AUTORECONF=yes
+AT_M4DIR="config"
+DOCS=( AUTHORS ChangeLog README )
+PATCHES=(
+ "${FILESDIR}"/${P}-use-any-cblas-implementation.patch
+ "${FILESDIR}"/${P}-fix-undefined-symbol.patch
+ "${FILESDIR}"/${P}-repl_removal.patch
+)
+
+src_configure() {
+ myeconfargs=(
+ --with-default="${EPREFIX}"/usr
+ )
+ autotools-utils_src_configure
+}
diff --git a/sci-libs/iml/iml-1.0.3.ebuild b/sci-libs/iml/iml-1.0.3.ebuild
deleted file mode 100644
index 92eab34..0000000
--- a/sci-libs/iml/iml-1.0.3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=2
-
-inherit autotools eutils
-
-DESCRIPTION="Integer Matrix Library"
-HOMEPAGE="http://www.cs.uwaterloo.ca/~astorjoh/iml.html"
-SRC_URI="http://www.cs.uwaterloo.ca/~astorjoh/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="mirror"
-IUSE=""
-
-DEPEND="dev-util/pkgconfig
- dev-libs/gmp
- virtual/cblas"
-RDEPEND="dev-libs/gmp
- virtual/cblas"
-
-src_prepare() {
- # do not need atlas specifically any cblas will do...
- epatch "${FILESDIR}/${P}-cblas.patch"
- # apply patch supplied by debian bugreport #494819
- epatch "${FILESDIR}/fix-undefined-symbol.patch"
- eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-shared \
- --with-cblas-lib="$(pkg-config cblas --libs)" \
- || die "econf failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc ChangeLog README
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-08-19 7:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-21 10:38 [gentoo-commits] proj/sci:master commit in: sci-libs/iml/files/, sci-libs/iml/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2019-08-19 7:51 Benda XU
2012-09-13 2:24 Francois Bissey
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox