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.1.2.0.ebuild
Date: Thu, 29 Dec 2011 08:44:55
Message-Id: 20111229084438.8C5642004B@flycatcher.gentoo.org
1 bicatali 11/12/29 08:44:38
2
3 Modified: ChangeLog
4 Added: clhep-2.1.2.0.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.37 sci-physics/clhep/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.37&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/ChangeLog?rev=1.37&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/ChangeLog?r1=1.36&r2=1.37
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v
20 retrieving revision 1.36
21 retrieving revision 1.37
22 diff -u -r1.36 -r1.37
23 --- ChangeLog 6 Aug 2011 20:50:27 -0000 1.36
24 +++ ChangeLog 29 Dec 2011 08:44:38 -0000 1.37
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-physics/clhep
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.36 2011/08/06 20:50:27 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/ChangeLog,v 1.37 2011/12/29 08:44:38 bicatali Exp $
30 +
31 +*clhep-2.1.2.0 (29 Dec 2011)
32 +
33 + 29 Dec 2011; Sébastien Fabbro <bicatali@g.o> +clhep-2.1.2.0.ebuild:
34 + Version bump
35
36 *clhep-2.1.1.0 (06 Aug 2011)
37
38
39
40
41 1.1 sci-physics/clhep/clhep-2.1.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/clhep-2.1.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/clhep/clhep-2.1.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: clhep-2.1.2.0.ebuild
47 ===================================================================
48 # Copyright 1999-2011 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.1.2.0.ebuild,v 1.1 2011/12/29 08:44:38 bicatali Exp $
51
52 EAPI=4
53 inherit autotools eutils
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 ~x86"
61
62 IUSE="exceptions static-libs"
63 RDEPEND=""
64 DEPEND="${RDEPEND}"
65
66 S="${WORKDIR}/${PV}/CLHEP"
67
68 src_prepare() {
69 local d
70 for d in $(find . -name configure.ac); do
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 ${d} || die
77 # need to rebuild because original configurations
78 # have buggy detection
79 done
80 for d in $(find . -name Makefile.am | xargs grep -l ": %\.cc"); do
81 sed -i \
82 -e 's|: %\.cc|: %\.cc \$(shareddir)|' \
83 -e 's|all-local: \$(shareddir)|all-local: |' \
84 ${d} || die
85 # fixing parallel build
86 done
87 eautoreconf
88 }
89
90 src_configure() {
91 econf \
92 $(use_enable exceptions) \
93 $(use_enable static-libs static)
94 }