diff options
author | Matthias Maier <tamiko@gentoo.org> | 2017-08-12 15:52:31 -0500 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2017-08-12 15:53:31 -0500 |
commit | 3d9d5ebbc13e83494dc13b2aef9434a459032162 (patch) | |
tree | 9aa9071f6b00afd4362ee96f900f2e156539303a /sci-libs/adolc | |
parent | dev-libs/libclc: Revert "fix llvm-config path." (diff) | |
download | gentoo-3d9d5ebbc13e83494dc13b2aef9434a459032162.tar.gz gentoo-3d9d5ebbc13e83494dc13b2aef9434a459032162.tar.bz2 gentoo-3d9d5ebbc13e83494dc13b2aef9434a459032162.zip |
sci-libs/adolc: add a live ebuild
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'sci-libs/adolc')
-rw-r--r-- | sci-libs/adolc/adolc-9999.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/sci-libs/adolc/adolc-9999.ebuild b/sci-libs/adolc/adolc-9999.ebuild new file mode 100644 index 000000000000..f9fec42a4403 --- /dev/null +++ b/sci-libs/adolc/adolc-9999.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools toolchain-funcs eutils git-r3 + +MYPN=ADOL-C + +DESCRIPTION="Automatic differentiation system for C/C++" +HOMEPAGE="https://projects.coin-or.org/ADOL-C/" + + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.com/adol-c/adol-c.git" + SRC_URI="" + KEYWORDS="" +else + SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" + S="${WORKDIR}/${MYPN}-${PV}" +fi + + +LICENSE="|| ( EPL-1.0 GPL-2 )" +SLOT="0/2" +IUSE="mpi sparse static-libs" + +RDEPEND=" + mpi? ( sys-cluster/ampi:0= ) + sparse? ( sci-libs/colpack:0= ) +" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-2.5.0-no-colpack.patch + "${FILESDIR}"/${PN}-2.5.0-pkgconfig-no-ldflags.patch + "${FILESDIR}"/${PN}-2.6.2-dash.patch +) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable mpi ampi) \ + $(use_enable sparse) \ + $(use_with sparse colpack "${EPREFIX}"/usr) +} + +src_test() { + emake test +} + +src_install() { + default + use static-libs || prune_libtool_files --all +} |