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