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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/root-5.14.00b.ebuild,v 1.1 2007/02/05 16:04:09 bicatali Exp $
inherit versionator flag-o-matic eutils toolchain-funcs qt3
DOC_PV=$(get_major_version)_$(get_version_component_range 2)
DESCRIPTION="C++ data analysis framework and interpreter from CERN"
SRC_URI="ftp://root.cern.ch/${PN}/${PN}_v${PV}.source.tar.gz
doc? ( ftp://root.cern.ch/root/doc/Users_Guide_${DOC_PV}.pdf )"
HOMEPAGE="http://root.cern.ch/"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="afs doc fftw kerberos ldap mysql odbc opengl postgres
python ruby qt3 ssl xml"
DEPEND="sys-apps/shadow
>=sci-libs/gsl-1.8
dev-libs/libpcre
|| ( media-libs/libafterimage x11-wm/afterstep )
opengl? ( virtual/opengl virtual/glu )
mysql? ( dev-db/mysql )
postgres? ( dev-db/postgresql )
afs? ( net-fs/openafs )
kerberos? ( app-crypt/mit-krb5 )
ldap? ( net-nds/openldap )
qt3? ( $(qt_min_version 3.3.4) )
fftw? ( >=sci-libs/fftw-3 )
python? ( dev-lang/python )
ruby? ( dev-lang/ruby )
ssl? ( dev-libs/openssl )
xml? ( dev-libs/libxml2 )
odbc? ( dev-db/unixODBC )"
S=${WORKDIR}/${PN}
pkg_setup() {
einfo
einfo "You may want to build ROOT with these non Gentoo extra packages:"
einfo "AliEn, castor, Chirp, Globus, Monalisa, Oracle, peac, "
einfo "PYTHIA, PYTHIA6, SapDB, SRP, Venus"
einfo "You can use the EXTRA_CONF variable for this."
einfo "Example, for PYTHIA, you would do: "
einfo "EXTRA_CONF=\"--enable-pythia --with-pythia-libdir=/usr/lib\" emerge root"
einfo
}
src_compile() {
# the configure script is not the standard autotools
./configure \
--prefix=/usr \
--bindir=/usr/bin \
--mandir=/usr/share/man/man1 \
--incdir=/usr/include/${PN} \
--libdir=/usr/$(get_libdir)/${PN} \
--aclocaldir=/usr/share/aclocal/ \
--datadir=/usr/share/${PN} \
--cintincdir=/usr/share/${PN}/cint \
--fontdir=/usr/share/${PN}/fonts \
--iconpath=/usr/share/${PN}/icons \
--macrodir=/usr/share/${PN}/macros \
--srcdir=/usr/share/${PN}/src \
--docdir=/usr/share/doc/${PF} \
--testdir=/usr/share/doc/${PF}/test \
--tutdir=/usr/share/doc/${PF}/tutorial \
--elispdir=/usr/share/emacs/site-lisp \
--etcdir=/etc/${PN} \
--disable-alien \
--disable-builtin-afterimage \
--disable-builtin-freetype \
--disable-builtin-pcre \
--disable-builtin-zlib \
--disable-cern \
--disable-chirp \
--disable-dcache \
--disable-globus \
--disable-rfio \
--disable-rpath \
--disable-sapdb \
--disable-srp \
--enable-asimage \
--enable-astiff \
--enable-cintex \
--enable-exceptions \
--enable-explicitlink \
--enable-gdml \
--enable-mathcore \
--enable-mathmore \
--enable-minuit2 \
--enable-reflex \
--enable-roofit \
--enable-shared \
--enable-soversion \
--enable-table \
--enable-thread \
--enable-xrootd \
$(use_enable afs) \
$(use_enable fftw fftw3) \
$(use_enable kerberos krb5) \
$(use_enable ldap) \
$(use_enable mysql) \
$(use_enable odbc) \
$(use_enable opengl) \
$(use_enable postgres pgsql) \
$(use_enable python) \
$(use_enable qt3 qt) \
$(use_enable qt3 qtgsi) \
$(use_enable ruby) \
$(use_enable ssl) \
$(use_enable xml) \
${EXTRA_CONF} \
|| die "configure failed"
emake \
OPTFLAGS="${CXXFLAGS}" \
|| die "emake failed"
# is this only for windows? not quite sure.
make cintdlls || die "make cintdlls failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
echo "LDPATH=\"/usr/$(get_libdir)/root\"" > 99root
doenvd 99root
if use doc; then
einfo "Installing user's guide and ref manual"
insinto /usr/share/doc/${PF}
doins "${DISTDIR}"/Users_Guide_${DOC_PV}.pdf
dohtml -r ${WORKDIR}/htmldoc
fi
}
|