Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/cminpack: ChangeLog cminpack-1.1.4.ebuild
Date: Tue, 03 Jan 2012 21:06:18
Message-Id: 20120103210608.359A82004B@flycatcher.gentoo.org
1 bicatali 12/01/03 21:06:08
2
3 Modified: ChangeLog
4 Added: cminpack-1.1.4.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 sci-libs/cminpack/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cminpack/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cminpack/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cminpack/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/cminpack/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 9 Jun 2011 20:52:31 -0000 1.1
24 +++ ChangeLog 3 Jan 2012 21:06:08 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-libs/cminpack
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/cminpack/ChangeLog,v 1.1 2011/06/09 20:52:31 bicatali Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cminpack/ChangeLog,v 1.2 2012/01/03 21:06:08 bicatali Exp $
31 +
32 +*cminpack-1.1.4 (03 Jan 2012)
33 +
34 + 03 Jan 2012; Sébastien Fabbro <bicatali@g.o> +cminpack-1.1.4.ebuild:
35 + Version bump
36
37 *cminpack-1.1.3 (09 Jun 2011)
38
39
40
41
42 1.1 sci-libs/cminpack/cminpack-1.1.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cminpack/cminpack-1.1.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/cminpack/cminpack-1.1.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: cminpack-1.1.4.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-libs/cminpack/cminpack-1.1.4.ebuild,v 1.1 2012/01/03 21:06:08 bicatali Exp $
52
53 EAPI=4
54
55 inherit cmake-utils
56
57 DESCRIPTION="C implementation of the MINPACK nonlinear optimization library"
58 HOMEPAGE="http://devernay.free.fr/hacks/cminpack/cminpack.html"
59 SRC_URI="http://devernay.free.fr/hacks/cminpack/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc test"
65
66 src_configure() {
67 mycmakeargs+=(
68 -DSHARED_LIBS=ON
69 $(cmake-utils_use_build test examples)
70 )
71 cmake-utils_src_configure
72 }
73
74 src_install() {
75 cmake-utils_src_install
76 dodoc readme*
77 use doc && dohtml -A .txt doc/*
78 }