ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/root.spec
(Generate patch)

Comparing COMP/CMSDIST/root.spec (file contents):
Revision 1.73 by dlange, Mon Oct 15 12:31:04 2007 UTC vs.
Revision 1.125 by elmer, Tue Oct 28 13:00:24 2008 UTC

# Line 1 | Line 1
1 < ### RPM lcg root 5.14.00g-CMS11
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
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 < Patch: root-CINT-maxlongline
8 < Patch1: root_libpng
9 < Patch2: root_PositionVector
10 < Patch3: root-fastmerge-ttree
11 < Patch4: root_TXMLSetup
12 < Patch5: root-Cintex
13 < Patch6: root_Reflex_Cintex
14 < Patch7: root_CallFunc
15 < Patch8: root-proofd
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 > Patch6:  root-5.18-00a-TBufferFile
14 > Patch7:  root-5.18-00a-cintexquickfix2
15 > Patch8:  root-5.18-00a-gendict-performance
16 > Patch9:  root-5.18-00a-TClass-classNameSize
17 > Patch10: root-5.18-00a-TFile-stlStreamerInfo
18 > Patch11: root-5.18-00-cintex_functional_mmap
19  
20   %define cpu %(echo %cmsplatf | cut -d_ -f2)
21   %define pythonv %(echo $PYTHON_VERSION | cut -d. -f1,2)
19 Requires: gccxml python qt gsl castor openssl mysql libpng libjpg dcap pcre zlib oracle libungif xrootd
22  
23 < %if "%cpu" != "amd64"
23 > Requires: gccxml gsl castor libjpg dcap pcre python
24 >
25 > %if "%cmsplatf" != "slc4onl_ia32_gcc346"
26 > Requires: qt openssl mysql libpng zlib libungif xrootd
27 > %else
28 > %define skiplibtiff true
29 > %endif
30 >
31 > %if "%cpu" == "amd64"
32 > %define skiplibtiff true
33 > %endif
34 >
35 > %if "%skiplibtiff" != "true"
36   Requires: libtiff
37   %endif
38  
39   %prep
40   %setup -n root
41 < %patch -p0
42 < %patch1 -p2
43 < %patch2 -p2
41 > %patch0 -p1
42 > %patch1 -p1
43 > %patch2 -p0
44   %patch3 -p1
45   %patch4 -p0
46 < %patch5 -p1
46 > %patch5 -p0
47   %patch6 -p0
48   %patch7 -p0
49   %patch8 -p1
50 + %patch9 -p0
51 + %patch10 -p0
52 + %patch11 -p0
53  
54   %build
55   mkdir -p %i
56   export ROOTSYS=%_builddir/root
57 +
58 + %if "%cmsplatf" == "slc4onl_ia32_gcc346"
59 + # Build without mysql, and use system qt.
60 + # Also skip xrootd and odbc for online case:
61 +
62 + EXTRA_CONFIG_ARGS="
63 +             --disable-mysql
64 +             --disable-xrootd
65 +             --disable-odbc
66 +             --enable-qt"
67 + %else
68 + EXTRA_CONFIG_ARGS="
69 +             --with-xrootd=$XROOTD_ROOT
70 +             --enable-mysql --with-mysql-libdir=${MYSQL_ROOT}/lib --with-mysql-incdir=${MYSQL_ROOT}/include
71 +             --enable-qt --with-qt-libdir=${QT_ROOT}/lib --with-qt-incdir=${QT_ROOT}/include
72 +             --with-ssl-incdir=${OPENSSL_ROOT}/include
73 +             --with-ssl-libdir=${OPENSSL_ROOT}/lib"
74 + %endif
75 +
76   CONFIG_ARGS="--enable-table
77               --disable-builtin-pcre
78               --disable-builtin-freetype
79               --disable-builtin-zlib
80               --with-gccxml=${GCCXML_ROOT}
81               --enable-python --with-python-libdir=${PYTHON_ROOT}/lib --with-python-incdir=${PYTHON_ROOT}/include/python2.4
46             --enable-mysql --with-mysql-libdir=${MYSQL_ROOT}/lib --with-mysql-incdir=${MYSQL_ROOT}/include
82               --enable-explicitlink
83               --enable-qtgsi
49             --enable-qt --with-qt-libdir=${QT_ROOT}/lib --with-qt-incdir=${QT_ROOT}/include
84               --enable-mathcore
85               --enable-mathmore
86               --enable-reflex  
# Line 55 | Line 89 | CONFIG_ARGS="--enable-table
89               --enable-roofit
90               --disable-ldap
91               --disable-krb5
58             --with-ssl-incdir=${OPENSSL_ROOT}/include
59             --with-ssl-libdir=${OPENSSL_ROOT}/lib
92               --with-gsl-incdir=${GSL_ROOT}/include
93               --with-gsl-libdir=${GSL_ROOT}/lib
94               --with-dcap-libdir=${DCAP_ROOT}/lib
95               --with-dcap-incdir=${DCAP_ROOT}/include
64             --with-xrootd=$XROOTD_ROOT
96               --disable-pgsql
97 <             --disable-xml"
97 >             --disable-xml ${EXTRA_CONFIG_ARGS}"
98 >
99 > %if (("%cmsplatf" == "slc4_ia32_gcc412")||("%cmsplatf" == "slc4_ia32_gcc422")||("%cmsplatf" == "slc4_amd64_gcc345"))
100 >  CONFIG_ARGS="$CONFIG_ARGS --disable-cern"
101 > %endif
102  
103   case $(uname)-$(uname -p) in
104    Linux-x86_64)
105 <    ./configure linuxx8664gcc $CONFIG_ARGS --enable-oracle --with-oracle-libdir=${ORACLE_ROOT}/lib --with-oracle-incdir=${ORACLE_ROOT}/include --with-shift-libdir=${CASTOR_ROOT}/lib --with-shift-incdir=${CASTOR_ROOT}/include/shift --disable-astiff --disable-cern;;
105 >    ./configure linuxx8664gcc $CONFIG_ARGS --with-shift-libdir=${CASTOR_ROOT}/lib --with-shift-incdir=${CASTOR_ROOT}/include/shift --disable-astiff --disable-cern;;
106    Linux-i*86)
107 <    ./configure linux  $CONFIG_ARGS --enable-oracle --with-oracle-libdir=${ORACLE_ROOT}/lib --with-oracle-incdir=${ORACLE_ROOT}/include --with-shift-libdir=${CASTOR_ROOT}/lib --with-shift-incdir=${CASTOR_ROOT}/include/shift;;
107 >    ./configure linux  $CONFIG_ARGS --with-shift-libdir=${CASTOR_ROOT}/lib --with-shift-incdir=${CASTOR_ROOT}/include/shift;;
108    Darwin*)
109      ./configure macosx $CONFIG_ARGS --disable-rfio;;
110    Linux-ppc64*)
# Line 105 | Line 140 | cat << \EOF_TOOLFILE >%i/etc/scram.d/roo
140   <info url="http://root.cern.ch/root/"></info>
141   <lib name=Cint>
142   <lib name=Core>
143 + <lib name=RIO>
144 + <lib name=Net>
145   <lib name=Tree>
146   <Client>
147   <Environment name=ROOTCORE_BASE default="%i"></Environment>
# Line 121 | Line 158 | cat << \EOF_TOOLFILE >%i/etc/scram.d/roo
158   </Tool>
159   EOF_TOOLFILE
160  
161 < # root toolfile
161 > # root toolfile, alias for rootphysics. Using rootphysics is preferred.
162   cat << \EOF_TOOLFILE >%i/etc/scram.d/root
163   <doc type=BuildSystem::ToolDoc version=1.0>
164   <Tool name=root version=%v>
165   <info url="http://root.cern.ch/root/"></info>
166 + <use name=rootphysics>
167 + </Tool>
168 + EOF_TOOLFILE
169 +
170 + # roothistmatrix toolfile
171 + cat << \EOF_TOOLFILE >%i/etc/scram.d/roothistmatrix
172 + <doc type=BuildSystem::ToolDoc version=1.0>
173 + <Tool name=roothistmatrix version=%v>
174 + <info url="http://root.cern.ch/root/"></info>
175 + <lib name=Hist>
176 + <lib name=Matrix>
177 + <use name=ROOTCore>
178 + </Tool>
179 + EOF_TOOLFILE
180 +
181 + # rootphysics toolfile
182 + cat << \EOF_TOOLFILE >%i/etc/scram.d/rootphysics
183 + <doc type=BuildSystem::ToolDoc version=1.0>
184 + <Tool name=rootphysics version=%v>
185 + <info url="http://root.cern.ch/root/"></info>
186 + <lib name=Physics>
187 + <use name=roothistmatrix>
188 + </Tool>
189 + EOF_TOOLFILE
190 +
191 + # rootgraphics toolfile, identical to old "root" toolfile
192 + cat << \EOF_TOOLFILE >%i/etc/scram.d/rootgraphics
193 + <doc type=BuildSystem::ToolDoc version=1.0>
194 + <Tool name=rootgraphics version=%v>
195 + <info url="http://root.cern.ch/root/"></info>
196   <lib name=TreePlayer>
197   <lib name=Gpad>
198   <lib name=Graf3d>
# Line 229 | Line 296 | cat << \EOF_TOOLFILE >%i/etc/scram.d/roo
296   <doc type=BuildSystem::ToolDoc version=1.0>
297   <Tool name=rootroofit version=%v>
298   <info url="http://root.cern.ch/root/"></info>
299 + <lib name=RooFitCore>
300   <lib name=RooFit>
301   <use name=ROOTMinuit>
302   <use name=ROOTHtml>
# Line 268 | Line 336 | EOF_TOOLFILE
336   %post
337   %{relocateConfig}etc/scram.d/root
338   %{relocateConfig}etc/scram.d/rootcore
339 + %{relocateConfig}etc/scram.d/roothistmatrix
340 + %{relocateConfig}etc/scram.d/rootphysics
341 + %{relocateConfig}etc/scram.d/rootgraphics
342   %{relocateConfig}etc/scram.d/rootcintex
343   %{relocateConfig}etc/scram.d/rootinteractive
344   %{relocateConfig}etc/scram.d/rootmath

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines