blob: 70f4ba0a63e8e542bb89d606b13d2e264dfe8a88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-physics/clhep/clhep-2.0.4.6.ebuild,v 1.2 2010/05/10 16:55:15 phajdan.jr Exp $
EAPI=2
inherit autotools eutils
DESCRIPTION="High Energy Physics C++ library"
HOMEPAGE="http://www.cern.ch/clhep"
SRC_URI="http://proj-clhep.web.cern.ch/proj-clhep/DISTRIBUTION/tarFiles/${P}.tgz"
LICENSE="public-domain"
SLOT="2"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc x86"
IUSE="exceptions"
RDEPEND=""
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PV}/CLHEP"
src_prepare() {
for d in $(find . -name configure.in); do
# respect user flags and fix some compilers stuff
sed -i \
-e 's:^g++):*g++):g' \
-e 's:^icc):icc|icpc):g' \
-e '/AM_CXXFLAGS=/s:-O ::g' \
${d} || die
# need to rebuild because original configurations
# have buggy detection
done
for d in $(find . -name Makefile.am | xargs grep -l ": %\.cc"); do
sed -i \
-e 's|: %\.cc|: %\.cc \$(shareddir)|' \
-e 's|all-local: \$(shareddir)|all-local: |' \
${d} || die
# fixing parallel build
done
eautoreconf
}
src_configure() {
econf $(use_enable exceptions)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README ChangeLog || die
}
|