Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/ipopt/
Date: Tue, 29 Jan 2013 22:30:57
Message-Id: 1359490742.476f32c8ad10ff85fbe0b77c986d6fc85b44cbb7.bicatali@gentoo
1 commit: 476f32c8ad10ff85fbe0b77c986d6fc85b44cbb7
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 29 20:19:02 2013 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 29 20:19:02 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=476f32c8
7
8 sci-libs/ipopt: Version bump
9
10 Package-Manager: portage-2.2.01.21688-prefix
11 RepoMan-Options: --force
12
13 ---
14 sci-libs/ipopt/ChangeLog | 8 +++++++-
15 .../{ipopt-3.10.2.ebuild => ipopt-3.10.3.ebuild} | 13 +++++++------
16 2 files changed, 14 insertions(+), 7 deletions(-)
17
18 diff --git a/sci-libs/ipopt/ChangeLog b/sci-libs/ipopt/ChangeLog
19 index 6fd42fc..1dab5b1 100644
20 --- a/sci-libs/ipopt/ChangeLog
21 +++ b/sci-libs/ipopt/ChangeLog
22 @@ -1,7 +1,13 @@
23 # ChangeLog for sci-libs/ipopt
24 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
25 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
26 # $Header: $
27
28 +*ipopt-3.10.3 (29 Jan 2013)
29 +
30 + 29 Jan 2013; Sébastien Fabbro <bicatali@g.o> +ipopt-3.10.3.ebuild,
31 + -ipopt-3.10.2.ebuild:
32 + sci-libs/ipopt: Version bump
33 +
34 *ipopt-3.10.2 (16 Jul 2012)
35
36 16 Jul 2012; Sébastien Fabbro <bicatali@g.o> +ipopt-3.10.2.ebuild,
37
38 diff --git a/sci-libs/ipopt/ipopt-3.10.2.ebuild b/sci-libs/ipopt/ipopt-3.10.3.ebuild
39 similarity index 88%
40 rename from sci-libs/ipopt/ipopt-3.10.2.ebuild
41 rename to sci-libs/ipopt/ipopt-3.10.3.ebuild
42 index 3859eeb..ac77543 100644
43 --- a/sci-libs/ipopt/ipopt-3.10.2.ebuild
44 +++ b/sci-libs/ipopt/ipopt-3.10.3.ebuild
45 @@ -1,10 +1,10 @@
46 -# Copyright 1999-2012 Gentoo Foundation
47 +# Copyright 1999-2013 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: $
50
51 -EAPI=4
52 +EAPI=5
53
54 -inherit autotools-utils multilib
55 +inherit autotools-utils multilib toolchain-funcs
56
57 MYPN=Ipopt
58
59 @@ -17,7 +17,8 @@ SLOT="0"
60 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
61 IUSE="doc examples lapack mumps static-libs test"
62
63 -RDEPEND="virtual/blas
64 +RDEPEND="
65 + virtual/blas
66 lapack? ( virtual/lapack )
67 mumps? ( sci-libs/mumps )"
68 DEPEND="${RDEPEND}
69 @@ -44,11 +45,11 @@ src_prepare() {
70
71 src_configure() {
72 local myeconfargs=(
73 - --with-blas-lib="$(pkg-config --libs blas)"
74 + --with-blas-lib="$($(tc-getPKG_CONFIG) --libs blas)"
75 $(use_with doc dot)
76 )
77 if use lapack; then
78 - myeconfargs+=( --with-lapack="$(pkg-config --libs lapack)" )
79 + myeconfargs+=( --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" )
80 else
81 myeconfargs+=( --without-lapack )
82 fi