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/clhep: ChangeLog clhep-2.0.4.3.ebuild
Date: Wed, 09 Sep 2009 22:41:10
Message-Id: E1MlVqe-0001tA-0j@stork.gentoo.org
1 bicatali 09/09/09 22:41:08
2
3 Modified: ChangeLog
4 Added: clhep-2.0.4.3.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.12 sci-physics/clhep/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 5 May 2009 19:39:02 -0000 1.11
23 +++ ChangeLog 9 Sep 2009 22:41:07 -0000 1.12
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sci-physics/clhep
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.11 2009/05/05 19:39:02 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.12 2009/09/09 22:41:07 bicatali Exp $
29 +
30 +*clhep-2.0.4.3 (09 Sep 2009)
31 +
32 + 09 Sep 2009; Sébastien Fabbro <bicatali@g.o>
33 + +clhep-2.0.4.3.ebuild:
34 + Version bump
35
36 05 May 2009; Christian Faulhammer <fauli@g.o> clhep-2.0.4.2.ebuild:
37 stable x86, bug 245875
38
39
40
41 1.1 sci-physics/clhep/clhep-2.0.4.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/clhep/clhep-2.0.4.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: clhep-2.0.4.3.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.3.ebuild,v 1.1 2009/09/09 22:41:07 bicatali Exp $
51
52 EAPI=2
53 inherit autotools
54
55 DESCRIPTION="High Energy Physics C++ library"
56 HOMEPAGE="http://www.cern.ch/clhep"
57 SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz"
58 LICENSE="public-domain"
59 SLOT="2"
60 KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
61
62 IUSE="exceptions"
63 RDEPEND=""
64 DEPEND="${RDEPEND}"
65
66 S="${WORKDIR}/${PV}/CLHEP"
67
68 src_prepare() {
69 for d in $(find . -name configure.in); do
70 pushd ${d/configure.in/}
71 # respect user flags and fix some compilers stuff
72 sed -i \
73 -e 's:^g++):*g++):g' \
74 -e 's:^icc):icc|icpc):g' \
75 -e '/AM_CXXFLAGS=/s:-O ::g' \
76 configure.in || die
77 # need to rebuild because original configurations
78 # have buggy detection
79 eautoreconf
80 popd
81 done
82 }
83
84 src_configure() {
85 econf $(use_enable exceptions)
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die "emake install failed"
90 dodoc README ChangeLog || die
91 }