ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/root.spec
Revision: 1.111
Committed: Mon Apr 7 21:01:51 2008 UTC (17 years ago) by ratnik
Branch: MAIN
CVS Tags: nr080408for200p9, dl080407t3, dl080407t2
Changes since 1.110: +7 -5 lines
Log Message:
Merge in configuration fixes for online release from  2.0.0.pre7

File Contents

# Content
1 ### RPM lcg root 5.18.00a
2 ## INITENV +PATH PYTHONPATH %i/lib/python
3 ## INITENV SET ROOTSYS %i
4 #Source: cvs://:pserver:cvs@root.cern.ch:2401/user/cvs?passwd=Ah<Z&tag=-rv%(echo %realversion | tr . -)&module=root&output=/%{n}_v%{realversion}.source.tar.gz
5 Source: ftp://root.cern.ch/%n/%{n}_v%{realversion}.source.tar.gz
6
7 Patch0: root-5.18-00-libpng
8 Patch1: root-5.18-00a-CINT-maxlongline
9 Patch2: root_5.18-00-CINTFunctional
10 Patch3: root-5.18-00a-TBufferXML
11 Patch4: root-5.18-00a-Cintex
12 Patch5: root-5.18-00a-Cintex2
13
14
15 %define cpu %(echo %cmsplatf | cut -d_ -f2)
16 %define pythonv %(echo $PYTHON_VERSION | cut -d. -f1,2)
17
18 Requires: gccxml gsl castor libjpg dcap pcre python
19
20 %if "%{?online_release:set}" != "set"
21 Requires: qt openssl mysql libpng zlib libungif xrootd
22 %else
23 %define skiplibtiff true
24 %endif
25
26 %if "%cpu" == "amd64"
27 %define skiplibtiff true
28 %endif
29
30 %if "%skiplibtiff" != "true"
31 Requires: libtiff
32 %endif
33
34 %prep
35 %setup -n root
36 %patch0 -p1
37 %patch1 -p1
38 %patch2 -p0
39 %patch3 -p1
40 %patch4 -p0
41 %patch5 -p0
42
43 %build
44 mkdir -p %i
45 export ROOTSYS=%_builddir/root
46
47 %if "%{?online_release:set}" == "set"
48 # Build without mysql, and use system qt.
49 # Also skip xrootd and odbc for online case:
50
51 EXTRA_CONFIG_ARGS="
52 --disable-mysql
53 --disable-xrootd
54 --disable-odbc
55 --enable-qt"
56 %else
57 EXTRA_CONFIG_ARGS="
58 --with-xrootd=$XROOTD_ROOT
59 --enable-mysql --with-mysql-libdir=${MYSQL_ROOT}/lib --with-mysql-incdir=${MYSQL_ROOT}/include
60 --enable-qt --with-qt-libdir=${QT_ROOT}/lib --with-qt-incdir=${QT_ROOT}/include
61 --with-ssl-incdir=${OPENSSL_ROOT}/include
62 --with-ssl-libdir=${OPENSSL_ROOT}/lib"
63 %endif
64
65 CONFIG_ARGS="--enable-table
66 --disable-builtin-pcre
67 --disable-builtin-freetype
68 --disable-builtin-zlib
69 --with-gccxml=${GCCXML_ROOT}
70 --enable-python --with-python-libdir=${PYTHON_ROOT}/lib --with-python-incdir=${PYTHON_ROOT}/include/python2.4
71 --enable-explicitlink
72 --enable-qtgsi
73 --enable-mathcore
74 --enable-mathmore
75 --enable-reflex
76 --enable-cintex
77 --enable-minuit2
78 --enable-roofit
79 --disable-ldap
80 --disable-krb5
81 --with-gsl-incdir=${GSL_ROOT}/include
82 --with-gsl-libdir=${GSL_ROOT}/lib
83 --with-dcap-libdir=${DCAP_ROOT}/lib
84 --with-dcap-incdir=${DCAP_ROOT}/include
85 --disable-pgsql
86 --disable-xml ${EXTRA_CONFIG_ARGS}"
87
88 %if (("%cmsplatf" == "slc4_ia32_gcc412")||("%cmsplatf" == "slc4_ia32_gcc422")||("%cmsplatf" == "slc4_amd64_gcc345"))
89 CONFIG_ARGS="$CONFIG_ARGS --disable-cern"
90 %endif
91
92 case $(uname)-$(uname -p) in
93 Linux-x86_64)
94 ./configure linuxx8664gcc $CONFIG_ARGS --with-shift-libdir=${CASTOR_ROOT}/lib --with-shift-incdir=${CASTOR_ROOT}/include/shift --disable-astiff --disable-cern;;
95 Linux-i*86)
96 ./configure linux $CONFIG_ARGS --with-shift-libdir=${CASTOR_ROOT}/lib --with-shift-incdir=${CASTOR_ROOT}/include/shift;;
97 Darwin*)
98 ./configure macosx $CONFIG_ARGS --disable-rfio;;
99 Linux-ppc64*)
100 ./configure linux $CONFIG_ARGS --disable-rfio;;
101 esac
102
103 make %makeprocesses
104 make cintdlls
105 %install
106 # Override installers if we are using GNU fileutils cp. On OS X
107 # ROOT's INSTALL is defined to "cp -pPR", which only works with
108 # the system cp (/bin/cp). If you have fileutils on fink, you
109 # lose. Check which one is getting picked up and select syntax
110 # accordingly. (FIXME: do we need to check that -P is accepted?)
111 if (cp --help | grep -e '-P.*--parents') >/dev/null 2>&1; then
112 cp="cp -dpR"
113 else
114 cp="cp -pPR"
115 fi
116
117 export ROOTSYS=%i
118 make INSTALL="$cp" INSTALLDATA="$cp" install
119 mkdir -p $ROOTSYS/lib/python
120 cp -r reflex/python/genreflex $ROOTSYS/lib/python
121 #
122
123 # SCRAM ToolBox toolfile
124 mkdir -p %i/etc/scram.d
125 # rootcore toolfile
126 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootcore
127 <doc type=BuildSystem::ToolDoc version=1.0>
128 <Tool name=rootcore version=%v>
129 <info url="http://root.cern.ch/root/"></info>
130 <lib name=Cint>
131 <lib name=Core>
132 <lib name=RIO>
133 <lib name=Net>
134 <lib name=Tree>
135 <Client>
136 <Environment name=ROOTCORE_BASE default="%i"></Environment>
137 <Environment name=LIBDIR default="$ROOTCORE_BASE/lib"></Environment>
138 <Environment name=INCLUDE default="$ROOTCORE_BASE/include"></Environment>
139 <Environment name=INCLUDE default="$ROOTCORE_BASE/cint"></Environment>
140 </Client>
141 <use name=sockets>
142 <use name=pcre>
143 <use name=zlib>
144 <Runtime name=PATH value="$ROOTCORE_BASE/bin" type=path>
145 <Runtime name=ROOTSYS value="$ROOTCORE_BASE/">
146 <Runtime name=PYTHONPATH value="$ROOTCORE_BASE/lib" type=path>
147 </Tool>
148 EOF_TOOLFILE
149
150 # root toolfile
151 cat << \EOF_TOOLFILE >%i/etc/scram.d/root
152 <doc type=BuildSystem::ToolDoc version=1.0>
153 <Tool name=root version=%v>
154 <info url="http://root.cern.ch/root/"></info>
155 <lib name=TreePlayer>
156 <lib name=Gpad>
157 <lib name=Graf3d>
158 <lib name=Graf>
159 <lib name=Hist>
160 <lib name=Matrix>
161 <lib name=Physics>
162 <lib name=Postscript>
163 <use name=ROOTCore>
164 </Tool>
165 EOF_TOOLFILE
166
167 # rootcintex toolfile
168 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootcintex
169 <doc type=BuildSystem::ToolDoc version=1.0>
170 <Tool name=rootcintex version=%v>
171 <info url="http://root.cern.ch/root/"></info>
172 <lib name=Cintex>
173 <use name=ROOTRflx>
174 <use name=ROOTCore>
175 </Tool>
176 EOF_TOOLFILE
177
178 # rootinteractive toolfile
179 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootinteractive
180 <doc type=BuildSystem::ToolDoc version=1.0>
181 <Tool name=rootinteractive version=%v>
182 <info url="http://root.cern.ch/root/"></info>
183 <lib name=Rint>
184 <lib name=GQt>
185 <use name=qt>
186 <use name=libjpg>
187 <use name=libpng>
188 <use name=ROOT>
189 </Tool>
190 EOF_TOOLFILE
191
192 # rootmath toolfile
193 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootmath
194 <doc type=BuildSystem::ToolDoc version=1.0>
195 <Tool name=rootmath version=%v>
196 <info url="http://root.cern.ch/root/"></info>
197 <lib name=MathCore>
198 <lib name=MathMore>
199 <use name=ROOTCore>
200 <use name=gsl>
201 </Tool>
202 EOF_TOOLFILE
203
204 # rootminuit toolfile
205 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootminuit
206 <doc type=BuildSystem::ToolDoc version=1.0>
207 <Tool name=rootminuit version=%v>
208 <info url="http://root.cern.ch/root/"></info>
209 <lib name=Minuit>
210 <use name=ROOT>
211 </Tool>
212 EOF_TOOLFILE
213
214 # rootminuit2 toolfile
215 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootminuit2
216 <doc type=BuildSystem::ToolDoc version=1.0>
217 <Tool name=rootminuit2 version=%v>
218 <info url="http://root.cern.ch/root/"></info>
219 <lib name=Minuit2>
220 <use name=ROOT>
221 </Tool>
222 EOF_TOOLFILE
223
224 # rootrflx toolfile
225 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootrflx
226 <doc type=BuildSystem::ToolDoc version=1.0>
227 <Tool name=rootrflx version=%v>
228 <info url="http://root.cern.ch/root/"></info>
229 <lib name=Reflex>
230 <Client>
231 <Environment name=ROOTRFLX_BASE default="%i"></Environment>
232 <Environment name=LIBDIR default="$ROOTRFLX_BASE/lib"></Environment>
233 <Environment name=INCLUDE default="$ROOTRFLX_BASE/include"></Environment>
234 </Client>
235 <use name=sockets>
236 <use name=gccxml>
237 <Runtime name=PATH value="$ROOTRFLX_BASE/bin" type=path>
238 <Runtime name=ROOTSYS value="$ROOTRFLX_BASE/">
239 <Runtime name=GENREFLEX value="$ROOTRFLX_BASE/bin/genreflex">
240 </Tool>
241 EOF_TOOLFILE
242
243 # roothtml toolfile
244 cat << \EOF_TOOLFILE >%i/etc/scram.d/roothtml
245 <doc type=BuildSystem::ToolDoc version=1.0>
246 <Tool name=roothtml version=%v>
247 <info url="http://root.cern.ch/root/"></info>
248 <lib name=Html>
249 <use name=ROOT>
250 </Tool>
251 EOF_TOOLFILE
252
253 # rootroofit toolfile
254 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootroofit
255 <doc type=BuildSystem::ToolDoc version=1.0>
256 <Tool name=rootroofit version=%v>
257 <info url="http://root.cern.ch/root/"></info>
258 <lib name=RooFitCore>
259 <lib name=RooFit>
260 <use name=ROOTMinuit>
261 <use name=ROOTHtml>
262 </Tool>
263 EOF_TOOLFILE
264
265 # rootmlp toolfile
266 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootmlp
267 <doc type=BuildSystem::ToolDoc version=1.0>
268 <Tool name=rootmlp version=%v>
269 <info url="http://root.cern.ch/root/"></info>
270 <lib name=MLP>
271 <use name=ROOT>
272 </Tool>
273 EOF_TOOLFILE
274
275 # roottmva toolfile
276 cat << \EOF_TOOLFILE >%i/etc/scram.d/roottmva
277 <doc type=BuildSystem::ToolDoc version=1.0>
278 <Tool name=roottmva version=%v>
279 <info url="http://root.cern.ch/root/"></info>
280 <lib name=TMVA>
281 <use name=ROOTMLP>
282 </Tool>
283 EOF_TOOLFILE
284
285 # rootthread toolfile
286 cat << \EOF_TOOLFILE >%i/etc/scram.d/rootthread
287 <doc type=BuildSystem::ToolDoc version=1.0>
288 <Tool name=rootthread version=%v>
289 <info url="http://root.cern.ch/root/"></info>
290 <lib name=Thread>
291 <use name=ROOTCore>
292 </Tool>
293 EOF_TOOLFILE
294
295 %post
296 %{relocateConfig}etc/scram.d/root
297 %{relocateConfig}etc/scram.d/rootcore
298 %{relocateConfig}etc/scram.d/rootcintex
299 %{relocateConfig}etc/scram.d/rootinteractive
300 %{relocateConfig}etc/scram.d/rootmath
301 %{relocateConfig}etc/scram.d/rootminuit
302 %{relocateConfig}etc/scram.d/rootminuit2
303 %{relocateConfig}etc/scram.d/rootrflx
304 %{relocateConfig}etc/scram.d/roothtml
305 %{relocateConfig}etc/scram.d/rootroofit
306 %{relocateConfig}etc/scram.d/rootmlp
307 %{relocateConfig}etc/scram.d/roottmva
308 %{relocateConfig}etc/scram.d/rootthread