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/adolc: adolc-2.5.0.ebuild ChangeLog
Date: Wed, 21 May 2014 16:16:20
Message-Id: 20140521161616.786662004C@flycatcher.gentoo.org
1 bicatali 14/05/21 16:16:16
2
3 Modified: ChangeLog
4 Added: adolc-2.5.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.6 sci-libs/adolc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/adolc/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 15 Jan 2014 19:44:44 -0000 1.5
24 +++ ChangeLog 21 May 2014 16:16:16 -0000 1.6
25 @@ -1,6 +1,13 @@
26 # ChangeLog for sci-libs/adolc
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/adolc/ChangeLog,v 1.5 2014/01/15 19:44:44 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/adolc/ChangeLog,v 1.6 2014/05/21 16:16:16 bicatali Exp $
30 +
31 +*adolc-2.5.0 (21 May 2014)
32 +
33 + 21 May 2014; Sébastien Fabbro <bicatali@g.o> +adolc-2.5.0.ebuild,
34 + +files/adolc-2.5.0-no-colpack.patch,
35 + +files/adolc-2.5.0-pkgconfig-no-ldflags.patch:
36 + Version bump
37
38 15 Jan 2014; Sébastien Fabbro <bicatali@g.o> -adolc-2.4.0.ebuild,
39 adolc-2.4.1.ebuild:
40
41
42
43 1.1 sci-libs/adolc/adolc-2.5.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/adolc-2.5.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/adolc/adolc-2.5.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: adolc-2.5.0.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sci-libs/adolc/adolc-2.5.0.ebuild,v 1.1 2014/05/21 16:16:16 bicatali Exp $
53
54 EAPI=5
55
56 AUTOTOOLS_AUTORECONF=yes
57 #AUTOTOOLS_IN_SOURCE_BUILD=yes
58
59 inherit autotools-utils toolchain-funcs
60
61 MYPN=ADOL-C
62
63 DESCRIPTION="Automatic differentiation system for C/C++"
64 HOMEPAGE="https://projects.coin-or.org/ADOL-C/"
65 SRC_URI="http://www.coin-or.org/download/source/${MYPN}/${MYPN}-${PV}.tgz"
66
67 LICENSE="|| ( EPL-1.0 GPL-2 )"
68 SLOT="0/1"
69 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
70 IUSE="mpi sparse static-libs"
71
72 RDEPEND="sparse? ( sci-libs/colpack:0= )"
73 DEPEND="${RDEPEND}"
74
75 S="${WORKDIR}/${MYPN}-${PV}"
76
77 PATCHES=(
78 "${FILESDIR}"/${PN}-2.5.0-no-colpack.patch
79 "${FILESDIR}"/${PN}-2.5.0-pkgconfig-no-ldflags.patch
80 )
81
82 src_configure() {
83 local myeconfargs=(
84 $(use_enable mpi ampi)
85 $(use_enable sparse)
86 $(use_with sparse colpack "${EPREFIX}"/usr)
87 )
88 autotools-utils_src_configure
89 }
90
91 src_test() {
92 autotools-utils_src_test test
93 }