Gentoo Archives: gentoo-commits

From: Christoph Junghans <junghans@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/lmfit/
Date: Fri, 01 Jun 2018 00:19:30
Message-Id: 1527810644.8f3e47f7bc2a994b063581be0ce06745c591d801.junghans@gentoo
1 commit: 8f3e47f7bc2a994b063581be0ce06745c591d801
2 Author: Christoph Junghans <junghans <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 31 23:50:44 2018 +0000
4 Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
5 CommitDate: Thu May 31 23:50:44 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8f3e47f7
7
8 sci-libs/lmfit: version bump
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 sci-libs/lmfit/lmfit-6.4.ebuild | 24 ++++++++++++++++++++++++
13 1 file changed, 24 insertions(+)
14
15 diff --git a/sci-libs/lmfit/lmfit-6.4.ebuild b/sci-libs/lmfit/lmfit-6.4.ebuild
16 new file mode 100644
17 index 000000000..5cc8fa8bd
18 --- /dev/null
19 +++ b/sci-libs/lmfit/lmfit-6.4.ebuild
20 @@ -0,0 +1,24 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit eutils
27 +
28 +DESCRIPTION="library for Levenberg-Marquardt least-squares minimization and curve fitting"
29 +HOMEPAGE="http://apps.jcns.fz-juelich.de/doku/sc/lmfit"
30 +SRC_URI="http://apps.jcns.fz-juelich.de/src/lmfit/old/${P}.tgz"
31 +
32 +LICENSE="BSD-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64"
35 +IUSE="static-libs"
36 +
37 +src_configure() {
38 + econf $(use_enable static-libs static)
39 +}
40 +
41 +src_install() {
42 + default
43 + prune_libtool_files
44 +}