diff options
author | Ionen Wolkens <sudinave@gmail.com> | 2021-02-26 01:55:51 -0500 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-02-27 03:06:24 +0000 |
commit | b6a6b839ef554a40fe804646aba32b9cae2761fb (patch) | |
tree | d9c951bc0a5800859611a8710addd13a9c8051f7 /sci-libs | |
parent | sci-libs/coinor-bonmin: add github remote-id (diff) | |
download | gentoo-b6a6b839ef554a40fe804646aba32b9cae2761fb.tar.gz gentoo-b6a6b839ef554a40fe804646aba32b9cae2761fb.tar.bz2 gentoo-b6a6b839ef554a40fe804646aba32b9cae2761fb.zip |
sci-libs/coinor-bonmin: bump to 1.8.8, ported to EAPI 7
Cleaned up old workarounds, reworked deps, and no longer generate
the pdf given it's included in the tarball.
USE=examples removed, now installed unconditionally (small files).
USE=doc now installs html docs.
USE=glpk removed, was a noop.
USE=static-libs removed.
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Ionen Wolkens <sudinave@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/coinor-bonmin/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/coinor-bonmin/coinor-bonmin-1.8.8.ebuild | 55 |
2 files changed, 56 insertions, 0 deletions
diff --git a/sci-libs/coinor-bonmin/Manifest b/sci-libs/coinor-bonmin/Manifest index 15dd0dbd3493..06655102ccc8 100644 --- a/sci-libs/coinor-bonmin/Manifest +++ b/sci-libs/coinor-bonmin/Manifest @@ -1 +1,2 @@ DIST Bonmin-1.7.4.tgz 12320747 BLAKE2B 779881abf98dcf1c0b6a22e2d7fe11c2075ac50a64afcfae735bbb221614ce247c9f918c5cac7d0772784512ff2135fedeb26295c5e5d3979ebb8e435cfdac21 SHA512 290b1b49e467ab8ce7fc6908d8aa76a3b1ba61f63f44427d3bdd8ff2bed4aa6ef28396f0be59e108038173ea670405b50d3c32636aacdee2c5787765bce763a4 +DIST coinor-bonmin-1.8.8.tar.gz 1336718 BLAKE2B 3b72852d54b62274dc347758ae6c3fe0a2b1c04c39c3b01d87aa28fcc8593a3d80945b2e88aabd4db03da31c426396302a2def44aac8a07e6101cd5331321ed1 SHA512 66c3b07e743b6f352b4760e32c774268606deda4143e597c3be81068237dd5021210dec46e53ae0930f480db18bfbaaf284cbdb3d20f07e6d8543968509f8999 diff --git a/sci-libs/coinor-bonmin/coinor-bonmin-1.8.8.ebuild b/sci-libs/coinor-bonmin/coinor-bonmin-1.8.8.ebuild new file mode 100644 index 000000000000..7ec47de50280 --- /dev/null +++ b/sci-libs/coinor-bonmin/coinor-bonmin-1.8.8.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="COIN-OR Basic Open-source Nonlinear Mixed INteger programming" +HOMEPAGE="https://projects.coin-or.org/Bonmin/" +SRC_URI="https://github.com/coin-or/Bonmin/archive/releases/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/Bonmin-releases-${PV}/Bonmin" + +LICENSE="EPL-1.0" +SLOT="0/4" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc test" +RESTRICT="!test? ( test )" + +RDEPEND=" + sci-libs/coinor-cbc:= + sci-libs/coinor-cgl:= + sci-libs/coinor-clp:= + sci-libs/coinor-osi:= + sci-libs/coinor-utils:= + sci-libs/ipopt:= + virtual/blas" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + doc? ( + app-doc/doxygen[dot] + virtual/latex-base + ) + test? ( sci-libs/coinor-sample )" + +src_configure() { + econf $(use_with doc dot) +} + +src_compile() { + emake all $(usex doc doxydoc '') +} + +src_test() { + # Needed given "make check" is a noop and it skips the working one. + emake test +} + +src_install() { + default + dodoc -r examples doc/BONMIN_UsersManual.pdf + use doc && dodoc -r doxydoc/html + + # Duplicate or irrelevant files. + rm -r "${ED}"/usr/share/coin/doc || die + find "${ED}" -name '*.la' -delete || die +} |