From: "Sebastien Fabbro" <bicatali@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/mumps/
Date: Thu, 12 Jul 2012 20:43:20 +0000 (UTC) [thread overview]
Message-ID: <1342107830.3bfe9db4f84571c965e6712a05be90a4a6bd9be9.bicatali@gentoo> (raw)
commit: 3bfe9db4f84571c965e6712a05be90a4a6bd9be9
Author: Sebastien Fabbro <sfabbro <AT> uvic <DOT> ca>
AuthorDate: Thu Jul 12 15:43:50 2012 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Jul 12 15:43:50 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=3bfe9db4
sci-libs/mumps: prefix love
(Portage version: 2.2.01.20757-prefix/git/Linux x86_64, unsigned Manifest commit)
---
sci-libs/mumps/ChangeLog | 4 +++-
sci-libs/mumps/mumps-4.10.0.ebuild | 32 +++++++++++++++++++++-----------
2 files changed, 24 insertions(+), 12 deletions(-)
diff --git a/sci-libs/mumps/ChangeLog b/sci-libs/mumps/ChangeLog
index 93973ef..4f22cd1 100644
--- a/sci-libs/mumps/ChangeLog
+++ b/sci-libs/mumps/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 12 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org> mumps-4.10.0.ebuild:
+ sci-libs/mumps: prefix love
+
13 Mar 2012; Sébastien Fabbro <bicatali@gentoo.org> mumps-4.10.0.ebuild,
metadata.xml:
Fixed for sequential (non mpi) libraries
@@ -18,4 +21,3 @@
01 Jun 2011; Sébastien Fabbro <bicatali@gentoo.org> +mumps-4.10.0.ebuild,
+metadata.xml:
Initial import
-
diff --git a/sci-libs/mumps/mumps-4.10.0.ebuild b/sci-libs/mumps/mumps-4.10.0.ebuild
index dc6a62d..a148f55 100644
--- a/sci-libs/mumps/mumps-4.10.0.ebuild
+++ b/sci-libs/mumps/mumps-4.10.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="${HOMEPAGE}${MYP}.tar.gz"
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples metis mpi +scotch static-libs"
RDEPEND="virtual/blas
@@ -24,20 +24,30 @@ RDEPEND="virtual/blas
DEPEND="${RDEPEND}
virtual/fortran
- dev-util/pkgconfig"
+ virtual/pkgconfig"
S="${WORKDIR}/${MYP}"
make_shared_lib() {
local libstatic=${1}
- local soname=$(basename "${1%.a}").so.$(get_major_version)
- shift
- einfo "Making ${soname}"
- ${LINK:-$(tc-getCC)} ${LDFLAGS} \
- -shared -Wl,-soname="${soname}" \
- -Wl,--whole-archive "${libstatic}" -Wl,--no-whole-archive \
- "$@" -o $(dirname "${libstatic}")/"${soname}" || die "${soname} failed"
- ln -s "${soname}" $(dirname "${libstatic}")/"${soname%.*}"
+ if [[ ${CHOST} == *-darwin* ]] ; then
+ local dylibname=$(basename "${1%.a}").dylib
+ shift
+ einfo "Making ${dylibname}"
+ ${LINK:-$(tc-getCC)} ${LDFLAGS} \
+ -dynamiclib -install_name "${EPREFIX}"/usr/lib/"${dylibname}" \
+ -Wl,-all_load -Wl,"${libstatic}" \
+ "$@" -o $(dirname "${libstatic}")/"${dylibname}" || die
+ else
+ local soname=$(basename "${1%.a}").so.${LIBVER}
+ shift
+ einfo "Making ${soname}"
+ ${LINK:-$(tc-getCC)} ${LDFLAGS} \
+ -shared -Wl,-soname="${soname}" \
+ -Wl,--whole-archive "${libstatic}" -Wl,--no-whole-archive \
+ "$@" -o $(dirname "${libstatic}")/"${soname}" || die "${soname} failed"
+ ln -s "${soname}" $(dirname "${libstatic}")/"${soname%.*}"
+ fi
}
src_prepare() {
@@ -138,7 +148,7 @@ src_test() {
}
src_install() {
- dolib.so lib/lib*.so*
+ dolib.so lib/lib*$(get_libname)*
use static-libs && dolib.a lib/lib*.a
insinto /usr
doins -r include
next reply other threads:[~2012-07-12 20:43 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-12 20:43 Sebastien Fabbro [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-05-12 19:25 [gentoo-commits] proj/sci:master commit in: sci-libs/mumps/ Sebastien Fabbro
2013-06-18 9:07 Justin Lecher
2012-12-11 20:11 Sebastien Fabbro
2012-07-15 20:19 Sebastien Fabbro
2012-07-15 20:19 Sebastien Fabbro
2012-07-13 4:45 Sebastien Fabbro
2012-07-12 20:43 Sebastien Fabbro
2012-03-13 0:56 Sebastien Fabbro
2012-03-13 0:56 Sebastien Fabbro
2012-03-12 16:35 Sebastien Fabbro
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=1342107830.3bfe9db4f84571c965e6712a05be90a4a6bd9be9.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