Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-physics/thepeg/
Date: Sat, 09 Nov 2013 08:55:56
Message-Id: 1383959884.c5735a923bddfe3de0d449a494a770aad53d49df.jlec@gentoo
1 commit: c5735a923bddfe3de0d449a494a770aad53d49df
2 Author: Jauhien Piatlicki (jauhien) <piatlicki <AT> gmail <DOT> com>
3 AuthorDate: Sat Nov 9 01:18:04 2013 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 9 01:18:04 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c5735a92
7
8 sci-physics/thepeg: USE flags fixed for ver. 1.9.0
9
10 ---
11 sci-physics/thepeg/ChangeLog | 6 ++++++
12 sci-physics/thepeg/metadata.xml | 1 +
13 sci-physics/thepeg/{thepeg-1.9.0.ebuild => thepeg-1.9.0-r1.ebuild} | 6 ++++--
14 3 files changed, 11 insertions(+), 2 deletions(-)
15
16 diff --git a/sci-physics/thepeg/ChangeLog b/sci-physics/thepeg/ChangeLog
17 index 723b533..5914b9e 100644
18 --- a/sci-physics/thepeg/ChangeLog
19 +++ b/sci-physics/thepeg/ChangeLog
20 @@ -2,6 +2,12 @@
21 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
22 # $Header: $
23
24 +*thepeg-1.9.0-r1 (09 Nov 2013)
25 +
26 + 09 Nov 2013; Jauhien Piatlicki (jauhien) <piatlicki@×××××.com>
27 + -thepeg-1.9.0.ebuild, +thepeg-1.9.0-r1.ebuild, metadata.xml:
28 + USEs fixed: fastjet USE added, lhapdf USE fixed
29 +
30 *thepeg-1.9.0 (04 Nov 2013)
31
32 04 Nov 2013; Jauhien Piatlicki <piatlicki@×××××.com> +thepeg-1.9.0.ebuild:
33
34 diff --git a/sci-physics/thepeg/metadata.xml b/sci-physics/thepeg/metadata.xml
35 index e41238c..8fe6a10 100644
36 --- a/sci-physics/thepeg/metadata.xml
37 +++ b/sci-physics/thepeg/metadata.xml
38 @@ -13,6 +13,7 @@
39 of the toolkit and which can be used by any event generator model.
40 </longdescription>
41 <use>
42 + <flag name='fastjet'>Adds support for <pkg>sci-physics/fastjet</pkg></flag>
43 <flag name='hepmc'>Adds support for High Energy Physics Monte Carlo
44 Generators <pkg>sci-physics/hepmc</pkg></flag>
45 <flag name='lhapdf'>Adds support for <pkg>sci-physics/lhapdf</pkg></flag>
46
47 diff --git a/sci-physics/thepeg/thepeg-1.9.0.ebuild b/sci-physics/thepeg/thepeg-1.9.0-r1.ebuild
48 similarity index 92%
49 rename from sci-physics/thepeg/thepeg-1.9.0.ebuild
50 rename to sci-physics/thepeg/thepeg-1.9.0-r1.ebuild
51 index a9d8b3c..d65e8df 100644
52 --- a/sci-physics/thepeg/thepeg-1.9.0.ebuild
53 +++ b/sci-physics/thepeg/thepeg-1.9.0-r1.ebuild
54 @@ -20,11 +20,12 @@ LICENSE="GPL-2"
55
56 SLOT="0"
57 KEYWORDS="~amd64 ~x86"
58 -IUSE="emacs hepmc java lhapdf test zlib"
59 +IUSE="emacs fastjet hepmc java lhapdf test zlib"
60
61 RDEPEND="sci-libs/gsl
62 dev-lang/perl
63 emacs? ( virtual/emacs )
64 + fastjet? ( sci-physics/fastjet )
65 hepmc? ( sci-physics/hepmc )
66 java? ( >=virtual/jre-1.5 )
67 lhapdf? ( sci-physics/lhapdf )
68 @@ -57,9 +58,10 @@ src_prepare() {
69 src_configure() {
70 econf \
71 --disable-silent-rules \
72 + $(use_with fastjet fastjet "${EPREFIX}"/usr) \
73 $(use_with hepmc hepmc "${EPREFIX}"/usr) \
74 $(use_with java javagui) \
75 - $(use_with lhapdf LHAPDF "${EPREFIX}"/usr) \
76 + $(use_with lhapdf lhapdf "${EPREFIX}"/usr) \
77 $(use_with zlib zlib "${EPREFIX}"/usr)
78 }