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-physics/fastjet: fastjet-3.0.6.ebuild ChangeLog
Date: Sun, 23 Feb 2014 02:46:14
Message-Id: 20140223024608.04BCE2004E@flycatcher.gentoo.org
1 bicatali 14/02/23 02:46:07
2
3 Modified: ChangeLog
4 Added: fastjet-3.0.6.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.8-prefix/cvs/Linux x86_64, signed Manifest commit with key 0x13CB1360)
9
10 Revision Changes Path
11 1.8 sci-physics/fastjet/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/fastjet/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/fastjet/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/fastjet/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-physics/fastjet/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 4 Jun 2013 17:35:13 -0000 1.7
24 +++ ChangeLog 23 Feb 2014 02:46:07 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-physics/fastjet
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/fastjet/ChangeLog,v 1.7 2013/06/04 17:35:13 bicatali Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/fastjet/ChangeLog,v 1.8 2014/02/23 02:46:07 bicatali Exp $
31 +
32 +*fastjet-3.0.6 (23 Feb 2014)
33 +
34 + 23 Feb 2014; Sébastien Fabbro <bicatali@g.o> +fastjet-3.0.6.ebuild:
35 + Version bump
36
37 04 Jun 2013; Sébastien Fabbro <bicatali@g.o> fastjet-3.0.3-r1.ebuild,
38 files/fastjet-3.0.3-system-siscone.patch, metadata.xml:
39
40
41
42 1.1 sci-physics/fastjet/fastjet-3.0.6.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/fastjet/fastjet-3.0.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/fastjet/fastjet-3.0.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fastjet-3.0.6.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-physics/fastjet/fastjet-3.0.6.ebuild,v 1.1 2014/02/23 02:46:07 bicatali Exp $
52
53 EAPI=5
54
55 FORTRAN_NEEDED=plugins
56
57 inherit autotools-utils fortran-2 flag-o-matic
58
59 DESCRIPTION="Fast implementation of several recombination jet algorithms"
60 HOMEPAGE="http://www.fastjet.fr/"
61 SRC_URI="${HOMEPAGE}/repo/${P}.tar.gz"
62
63 LICENSE="GPL-2 QPL"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
66 IUSE="cgal doc examples +plugins static-libs"
67
68 RDEPEND="cgal? ( sci-mathematics/cgal )"
69 DEPEND="${RDEPEND}
70 doc? ( app-doc/doxygen[dot] )
71 plugins? ( sci-physics/siscone )"
72
73 src_configure() {
74 use cgal && has_version sci-mathematics/cgal[gmp] && append-ldflags -lgmp
75 local myeconfargs=(
76 $(use_enable cgal)
77 $(use_enable plugins allplugins)
78 $(use_enable plugins allcxxplugins)
79 )
80 autotools-utils_src_configure
81 }
82
83 src_compile() {
84 autotools-utils_src_compile
85 if use doc; then
86 doxygen Doxyfile || die
87 fi
88 }
89
90 src_install() {
91 autotools-utils_src_install
92 use doc && dohtml -r html/*
93 if use examples; then
94 insinto /usr/share/doc/${PF}
95 find example \
96 -name Makefile -or Makefile.in -or Makefile.am -delete
97 doins -r example/*
98 fi
99 }