* [gentoo-commits] proj/sci:master commit in: sci-libs/ipopt/
@ 2012-07-16 23:21 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2012-07-16 23:21 UTC (permalink / raw
To: gentoo-commits
commit: 73a26c72b4026f83861394c948fb5048c2c95f42
Author: Sebastien Fabbro <sfabbro <AT> uvic <DOT> ca>
AuthorDate: Mon Jul 16 23:18:04 2012 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Jul 16 23:18:04 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=73a26c72
sci-libs/ipopt: Initial import
(Portage version: 2.2.01.20757-prefix/git/Linux x86_64, RepoMan options: --force, unsigned Manifest commit)
---
sci-libs/ipopt/ChangeLog | 9 ++++
sci-libs/ipopt/ipopt-3.10.2.ebuild | 85 ++++++++++++++++++++++++++++++++++++
sci-libs/ipopt/metadata.xml | 17 +++++++
3 files changed, 111 insertions(+), 0 deletions(-)
diff --git a/sci-libs/ipopt/ChangeLog b/sci-libs/ipopt/ChangeLog
new file mode 100644
index 0000000..6fd42fc
--- /dev/null
+++ b/sci-libs/ipopt/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-libs/ipopt
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*ipopt-3.10.2 (16 Jul 2012)
+
+ 16 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org> +ipopt-3.10.2.ebuild,
+ +metadata.xml:
+ sci-libs/ipopt: Initial import
diff --git a/sci-libs/ipopt/ipopt-3.10.2.ebuild b/sci-libs/ipopt/ipopt-3.10.2.ebuild
new file mode 100644
index 0000000..3859eeb
--- /dev/null
+++ b/sci-libs/ipopt/ipopt-3.10.2.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit autotools-utils multilib
+
+MYPN=Ipopt
+
+DESCRIPTION="Interior-Point Optimizer for large-scale nonlinear optimization"
+HOMEPAGE="https://projects.coin-or.org/Ipopt/"
+SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
+
+LICENSE="EPL-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples lapack mumps static-libs test"
+
+RDEPEND="virtual/blas
+ lapack? ( virtual/lapack )
+ mumps? ( sci-libs/mumps )"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen[dot] )
+ test? ( sci-libs/coinor-sample )"
+
+S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
+
+src_prepare() {
+ # as-needed fix
+ # hack to avoid eautoreconf (coinor has its own weird autotools)
+ sed -i \
+ -e 's:\(libipopt_la_LIBADD.*=.*\)$:\1 @IPOPTLIB_LIBS@:g' \
+ src/Interfaces/Makefile.in || die
+
+ if has_version sci-libs/mumps[-mpi]; then
+ ln -s "${EPREFIX}"/usr/include/mpiseq/mpi.h \
+ src/Algorithm/LinearSolvers/
+ elif has_version sci-libs/mumps[mpi]; then
+ export CXX=mpicxx
+ fi
+}
+
+src_configure() {
+ local myeconfargs=(
+ --with-blas-lib="$(pkg-config --libs blas)"
+ $(use_with doc dot)
+ )
+ if use lapack; then
+ myeconfargs+=( --with-lapack="$(pkg-config --libs lapack)" )
+ else
+ myeconfargs+=( --without-lapack )
+ fi
+ if use mumps; then
+ myeconfargs+=(
+ --with-mumps-incdir="${EPREFIX}"/usr/include
+ --with-mumps-lib="-lmumps_common -ldmumps -lzmumps -lsmumps -lcmumps" )
+ else
+ myeconfargs+=( --without-mumps )
+ fi
+ PKG_CONFIG_PATH+="${ED}"/usr/$(get_libdir)/pkgconfig \
+ autotools-utils_src_configure
+}
+
+src_compile() {
+ autotools-utils_src_compile all $(use doc && echo doxydoc)
+}
+
+src_test() {
+ pushd "${AUTOTOOLS_BUILD_DIR}" > /dev/null || die
+ emake test
+ popd > /dev/null || die
+}
+
+src_install() {
+ use doc && HTML_DOC=("${AUTOTOOLS_BUILD_DIR}/doxydocs/html/")
+ autotools-utils_src_install
+ # already installed
+ rm "${ED}"/usr/share/coin/doc/${MYPN}/{README,AUTHORS,LICENSE} || die
+ if use examples; then
+ insinto /usr/share/doc/${PF}
+ doins -r examples
+ fi
+}
diff --git a/sci-libs/ipopt/metadata.xml b/sci-libs/ipopt/metadata.xml
new file mode 100644
index 0000000..e5270ee
--- /dev/null
+++ b/sci-libs/ipopt/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci</herd>
+<longdescription lang="en">
+ Ipopt is a solver for large-scale nonlinear continuous
+ optimization. It can be used from modeling environments, such as
+ AMPL, GAMS, or Matlab, and it is also available as a callable library with
+ interfaces to C++, C, and Fortran. Ipopt uses an interior point
+ method, together with a filter linear search procedure. Ipopt is part of the
+ larger COIN-OR initiative (Computational Infrastructure for Operations
+ Research).
+</longdescription>
+<use>
+ <flag name='mumps'>Enable <pkg>sci-libs/mumps</pkg> support</flag>
+</use>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/ipopt/
@ 2013-01-29 22:30 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2013-01-29 22:30 UTC (permalink / raw
To: gentoo-commits
commit: 476f32c8ad10ff85fbe0b77c986d6fc85b44cbb7
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 29 20:19:02 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Tue Jan 29 20:19:02 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=476f32c8
sci-libs/ipopt: Version bump
Package-Manager: portage-2.2.01.21688-prefix
RepoMan-Options: --force
---
sci-libs/ipopt/ChangeLog | 8 +++++++-
.../{ipopt-3.10.2.ebuild => ipopt-3.10.3.ebuild} | 13 +++++++------
2 files changed, 14 insertions(+), 7 deletions(-)
diff --git a/sci-libs/ipopt/ChangeLog b/sci-libs/ipopt/ChangeLog
index 6fd42fc..1dab5b1 100644
--- a/sci-libs/ipopt/ChangeLog
+++ b/sci-libs/ipopt/ChangeLog
@@ -1,7 +1,13 @@
# ChangeLog for sci-libs/ipopt
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*ipopt-3.10.3 (29 Jan 2013)
+
+ 29 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org> +ipopt-3.10.3.ebuild,
+ -ipopt-3.10.2.ebuild:
+ sci-libs/ipopt: Version bump
+
*ipopt-3.10.2 (16 Jul 2012)
16 Jul 2012; Sébastien Fabbro <bicatali@gentoo.org> +ipopt-3.10.2.ebuild,
diff --git a/sci-libs/ipopt/ipopt-3.10.2.ebuild b/sci-libs/ipopt/ipopt-3.10.3.ebuild
similarity index 88%
rename from sci-libs/ipopt/ipopt-3.10.2.ebuild
rename to sci-libs/ipopt/ipopt-3.10.3.ebuild
index 3859eeb..ac77543 100644
--- a/sci-libs/ipopt/ipopt-3.10.2.ebuild
+++ b/sci-libs/ipopt/ipopt-3.10.3.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI=4
+EAPI=5
-inherit autotools-utils multilib
+inherit autotools-utils multilib toolchain-funcs
MYPN=Ipopt
@@ -17,7 +17,8 @@ SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples lapack mumps static-libs test"
-RDEPEND="virtual/blas
+RDEPEND="
+ virtual/blas
lapack? ( virtual/lapack )
mumps? ( sci-libs/mumps )"
DEPEND="${RDEPEND}
@@ -44,11 +45,11 @@ src_prepare() {
src_configure() {
local myeconfargs=(
- --with-blas-lib="$(pkg-config --libs blas)"
+ --with-blas-lib="$($(tc-getPKG_CONFIG) --libs blas)"
$(use_with doc dot)
)
if use lapack; then
- myeconfargs+=( --with-lapack="$(pkg-config --libs lapack)" )
+ myeconfargs+=( --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" )
else
myeconfargs+=( --without-lapack )
fi
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/ipopt/
@ 2013-06-12 22:02 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2013-06-12 22:02 UTC (permalink / raw
To: gentoo-commits
commit: 65312a197f75fc580ac2138e55925d78aa0254b3
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 12 22:00:52 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jun 12 22:00:52 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=65312a19
sci-libs/ipopt: Version bump
Package-Manager: portage-2.2.01.22013-prefix
---
sci-libs/ipopt/ChangeLog | 6 ++++++
.../{ipopt-3.10.3.ebuild => ipopt-3.11.0.ebuild} | 19 +++++++++++++++----
2 files changed, 21 insertions(+), 4 deletions(-)
diff --git a/sci-libs/ipopt/ChangeLog b/sci-libs/ipopt/ChangeLog
index 1dab5b1..c0da742 100644
--- a/sci-libs/ipopt/ChangeLog
+++ b/sci-libs/ipopt/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*ipopt-3.11.0 (12 Jun 2013)
+
+ 12 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> +ipopt-3.11.0.ebuild,
+ -ipopt-3.10.3.ebuild:
+ sci-libs/ipopt: Version bump
+
*ipopt-3.10.3 (29 Jan 2013)
29 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org> +ipopt-3.10.3.ebuild,
diff --git a/sci-libs/ipopt/ipopt-3.10.3.ebuild b/sci-libs/ipopt/ipopt-3.11.0.ebuild
similarity index 80%
rename from sci-libs/ipopt/ipopt-3.10.3.ebuild
rename to sci-libs/ipopt/ipopt-3.11.0.ebuild
index ac77543..29667fd 100644
--- a/sci-libs/ipopt/ipopt-3.10.3.ebuild
+++ b/sci-libs/ipopt/ipopt-3.11.0.ebuild
@@ -4,27 +4,30 @@
EAPI=5
+AUTOTOOLS_IN_SOURCE_BUILD=yes
inherit autotools-utils multilib toolchain-funcs
MYPN=Ipopt
+MYP=${MYPN}-${PV}
DESCRIPTION="Interior-Point Optimizer for large-scale nonlinear optimization"
HOMEPAGE="https://projects.coin-or.org/Ipopt/"
-SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
+SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYP}.tgz"
-LICENSE="EPL-1.0"
+LICENSE="EPL-1.0 hsl? ( HSL )"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples lapack mumps static-libs test"
+IUSE="doc examples hsl lapack mumps static-libs test"
RDEPEND="
virtual/blas
+ hsl? ( sci-libs/coinhsl )
lapack? ( virtual/lapack )
mumps? ( sci-libs/mumps )"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen[dot] )
- test? ( sci-libs/coinor-sample )"
+ test? ( sci-libs/coinor-sample sci-libs/coinhsl )"
S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
@@ -48,6 +51,7 @@ src_configure() {
--with-blas-lib="$($(tc-getPKG_CONFIG) --libs blas)"
$(use_with doc dot)
)
+
if use lapack; then
myeconfargs+=( --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" )
else
@@ -60,6 +64,13 @@ src_configure() {
else
myeconfargs+=( --without-mumps )
fi
+ if use hsl; then
+ myeconfargs+=(
+ --with-hsl-incdir="${EPREFIX}"/usr/include
+ --with-hsl-lib="$($(tc-getPKG_CONFIG) --libs coinhsl)" )
+ else
+ myeconfargs+=( --without-hsl )
+ fi
PKG_CONFIG_PATH+="${ED}"/usr/$(get_libdir)/pkgconfig \
autotools-utils_src_configure
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/ipopt/
@ 2013-06-13 7:05 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2013-06-13 7:05 UTC (permalink / raw
To: gentoo-commits
commit: b300f1b9f1b67d6acf55e421486173ac339574c7
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 13 06:12:10 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Jun 13 06:12:25 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b300f1b9
sci-libs/ipopt: Fix local USE description
Package-Manager: portage-2.2.0_alpha179
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
---
sci-libs/ipopt/ChangeLog | 3 +++
sci-libs/ipopt/metadata.xml | 11 ++++++-----
2 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/sci-libs/ipopt/ChangeLog b/sci-libs/ipopt/ChangeLog
index c0da742..f35fa61 100644
--- a/sci-libs/ipopt/ChangeLog
+++ b/sci-libs/ipopt/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 13 Jun 2013; Justin Lecher <jlec@gentoo.org> metadata.xml:
+ Fix local USE description
+
*ipopt-3.11.0 (12 Jun 2013)
12 Jun 2013; Sébastien Fabbro <bicatali@gentoo.org> +ipopt-3.11.0.ebuild,
diff --git a/sci-libs/ipopt/metadata.xml b/sci-libs/ipopt/metadata.xml
index e5270ee..6d6ec69 100644
--- a/sci-libs/ipopt/metadata.xml
+++ b/sci-libs/ipopt/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<herd>sci</herd>
-<longdescription lang="en">
+ <herd>sci</herd>
+ <longdescription lang="en">
Ipopt is a solver for large-scale nonlinear continuous
optimization. It can be used from modeling environments, such as
AMPL, GAMS, or Matlab, and it is also available as a callable library with
@@ -11,7 +11,8 @@
larger COIN-OR initiative (Computational Infrastructure for Operations
Research).
</longdescription>
-<use>
- <flag name='mumps'>Enable <pkg>sci-libs/mumps</pkg> support</flag>
-</use>
+ <use>
+ <flag name="hsl">hsl</flag>
+ <flag name="mumps">Enable <pkg>sci-libs/mumps</pkg> support</flag>
+ </use>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/ipopt/
@ 2013-07-03 19:58 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2013-07-03 19:58 UTC (permalink / raw
To: gentoo-commits
commit: 1704bb0ae98b0c43280c244f040730879ccbff95
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 3 16:53:36 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Wed Jul 3 16:53:36 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=1704bb0a
sci-libs/ipopt: Version bump
Package-Manager: portage-2.2.01.22097-prefix
---
sci-libs/ipopt/ChangeLog | 6 ++++++
.../ipopt/{ipopt-3.11.0.ebuild => ipopt-3.11.2.ebuild} | 15 +++++++++------
2 files changed, 15 insertions(+), 6 deletions(-)
diff --git a/sci-libs/ipopt/ChangeLog b/sci-libs/ipopt/ChangeLog
index f35fa61..e6f6ffa 100644
--- a/sci-libs/ipopt/ChangeLog
+++ b/sci-libs/ipopt/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*ipopt-3.11.2 (03 Jul 2013)
+
+ 03 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org> +ipopt-3.11.2.ebuild,
+ -ipopt-3.11.0.ebuild:
+ sci-libs/ipopt: Version bump
+
13 Jun 2013; Justin Lecher <jlec@gentoo.org> metadata.xml:
Fix local USE description
diff --git a/sci-libs/ipopt/ipopt-3.11.0.ebuild b/sci-libs/ipopt/ipopt-3.11.2.ebuild
similarity index 87%
rename from sci-libs/ipopt/ipopt-3.11.0.ebuild
rename to sci-libs/ipopt/ipopt-3.11.2.ebuild
index 29667fd..29c7f33 100644
--- a/sci-libs/ipopt/ipopt-3.11.0.ebuild
+++ b/sci-libs/ipopt/ipopt-3.11.2.ebuild
@@ -5,7 +5,8 @@
EAPI=5
AUTOTOOLS_IN_SOURCE_BUILD=yes
-inherit autotools-utils multilib toolchain-funcs
+FORTRAN_NEEDED="mumps"
+inherit autotools-utils multilib toolchain-funcs fortran-2
MYPN=Ipopt
MYP=${MYPN}-${PV}
@@ -38,11 +39,13 @@ src_prepare() {
-e 's:\(libipopt_la_LIBADD.*=.*\)$:\1 @IPOPTLIB_LIBS@:g' \
src/Interfaces/Makefile.in || die
- if has_version sci-libs/mumps[-mpi]; then
- ln -s "${EPREFIX}"/usr/include/mpiseq/mpi.h \
- src/Algorithm/LinearSolvers/
- elif has_version sci-libs/mumps[mpi]; then
- export CXX=mpicxx
+ if use mumps; then
+ if has_version sci-libs/mumps[-mpi]; then
+ ln -s "${EPREFIX}"/usr/include/mpiseq/mpi.h \
+ src/Algorithm/LinearSolvers/
+ elif has_version sci-libs/mumps[mpi]; then
+ export CXX=mpicxx FC=mpif77 F77=mpif77 CC=mpicc
+ fi
fi
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-libs/ipopt/
@ 2013-12-08 5:00 Sebastien Fabbro
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro @ 2013-12-08 5:00 UTC (permalink / raw
To: gentoo-commits
commit: e637e3d02e7ebb97711823cd35412012b26d80d4
Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 7 15:59:39 2013 +0000
Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Sat Dec 7 15:59:39 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=e637e3d0
sci-libs/ipopt: Version bump
Package-Manager: portage-2.2.7-prefix
---
sci-libs/ipopt/ChangeLog | 6 ++++++
sci-libs/ipopt/{ipopt-3.11.2.ebuild => ipopt-3.11.6.ebuild} | 4 ++--
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/sci-libs/ipopt/ChangeLog b/sci-libs/ipopt/ChangeLog
index b2eba09..dd547d0 100644
--- a/sci-libs/ipopt/ChangeLog
+++ b/sci-libs/ipopt/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*ipopt-3.11.6 (07 Dec 2013)
+
+ 07 Dec 2013; Sébastien Fabbro <bicatali@gentoo.org> +ipopt-3.11.6.ebuild,
+ -ipopt-3.11.2.ebuild:
+ sci-libs/ipopt: Version bump
+
03 Jul 2013; Sébastien Fabbro <bicatali@gentoo.org>
+files/ipopt-3.11.2-mpi-header.patch, ipopt-3.11.2.ebuild:
sci-libs/ipopt: patch for mpi builds, and better dependence on mumps and mpi
diff --git a/sci-libs/ipopt/ipopt-3.11.2.ebuild b/sci-libs/ipopt/ipopt-3.11.6.ebuild
similarity index 97%
rename from sci-libs/ipopt/ipopt-3.11.2.ebuild
rename to sci-libs/ipopt/ipopt-3.11.6.ebuild
index ab85f12..9af85e1 100644
--- a/sci-libs/ipopt/ipopt-3.11.2.ebuild
+++ b/sci-libs/ipopt/ipopt-3.11.6.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://projects.coin-or.org/Ipopt/"
SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYP}.tgz"
LICENSE="EPL-1.0 hsl? ( HSL )"
-SLOT="0"
+SLOT="0/1"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="doc examples hsl lapack mpi mumps static-libs test"
@@ -33,7 +33,7 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/${MYPN}-${PV}/${MYPN}"
src_prepare() {
- epatch "${FILESDIR}"/${P}-mpi-header.patch
+ #epatch "${FILESDIR}"/${P}-mpi-header.patch
# as-needed fix
# hack to avoid eautoreconf (coinor has its own weird autotools)
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-12-08 5:00 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-29 22:30 [gentoo-commits] proj/sci:master commit in: sci-libs/ipopt/ Sebastien Fabbro
-- strict thread matches above, loose matches on Subject: below --
2013-12-08 5:00 Sebastien Fabbro
2013-07-03 19:58 Sebastien Fabbro
2013-06-13 7:05 Justin Lecher
2013-06-12 22:02 Sebastien Fabbro
2012-07-16 23:21 Sebastien Fabbro
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox