ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CMSDIST/zlib.spec
Revision: 1.13
Committed: Mon Sep 3 15:28:46 2007 UTC (17 years, 7 months ago) by muzaffar
Branch: MAIN
CVS Tags: CMSSW_1_7_7, dl080227for176, CMSSW_1_7_5_ONLINE1, CMSSW_1_7_5, CMSSW_1_7_5_g491, CMSSW_1_7_5_ONLINE, nr080115onl175, dl080111, ge20080109-webconddb, ge20080109-sitedb, CMSSW_1_7_4, CMSSW_1_7_3_g490p1, dl071212t2, dl071212, CMSSW_1_7_3, CMSSW_1_7_2, CMSSW_1_7_1, nr071121onl170_xdaq5, nr071120_fwlite170_1, CMSSW_1_7_0_ONLINE, CMSSW_1_7_0, nr071116onlpre13, CMSSW_1_7_0_pre13, dl071114, ap20071113, CMSSW_1_7_0_pre12, CMSSW_1_7_0_pre10_ONLINE, CMSSW_1_7_0_pre11, nr071105a, CMSSW_1_7_0_pre10, CMSSW_1_7_0_pre9, CMSSW_1_7_0_pre8, CMSSW_1_7_0_pre7, dl071028, dl071024, nr071023_fwlite170p6, pe20071023-170p6-amd64, dl071021t2, dl071021, pe20071021a-ports, dl071020, nr071017_170p5onl2, CMSSW_1_7_0_pre6, nr071016_170p5onl1, nr071016onl170p5bs, nr071016onl170p5, pe20071015-xrootd, pe20071014-ports, dl071014, dl071010t2, dl071010, dl071009t2, dl071009, CMSSW_1_7_0_pre5, dl070926t2, dl070926, ap-20070926, CMSSW_1_7_0_pre4, dl070921t2, dl070921, dl070920, CMSSW_1_7_0_pre3, dl070916, dl070912, dl070812, sm070912b, sm070912a, sm070911a, dl070909p3, dl070909, CMSSW_1_7_0_pre2, dl070906, dl070905, sm030907a
Changes since 1.12: +17 -2 lines
Log Message:
new spec files for auto generation of toolfile i.e. no need of scramtoolbox

File Contents

# Content
1 ### RPM external zlib 1.1.4-CMS8
2 Source: http://www.gzip.org/%n/%n-%realversion.tar.bz2
3 Patch: zlib-1.1.4-shared-for-32-bit-on-x86_64
4
5 %prep
6 %setup -n %n-%realversion
7 # Apply this patch to force shared libraries to be created. The problem
8 # only appears when building 32-bit on 64-bit machines (./configure gets
9 # confused by the 'skipping /usr/lib64' message), but applying it on all
10 # linux builds should not hurt since they all should build shared libraries.
11 %ifos linux
12 %patch -p1
13 %endif
14
15 %build
16 case $(uname) in
17 Darwin )
18 LDSHARED="gcc -dynamiclib" ./configure --shared --prefix=%i
19 make LIBS='libz.dylib.$(VER)' SHAREDLIB=libz.dylib # FIXME: libz.$(VER).dylib
20 ;;
21
22 * )
23 ./configure --shared --prefix=%i
24 make %makeprocesses
25 ;;
26 esac
27
28 %install
29 case $(uname) in
30 Darwin ) make install LIBS='libz.dylib.$(VER)' SHAREDLIB=libz.dylib ;;
31 * ) make install ;;
32 esac
33 #
34 # SCRAM ToolBox toolfile
35 mkdir -p %i/etc/scram.d
36 cat << \EOF_TOOLFILE >%i/etc/scram.d/%n
37 <doc type=BuildSystem::ToolDoc version=1.0>
38 <Tool name=%n version=%v>
39 <lib name=z>
40 <client>
41 <Environment name=ZLIB_BASE default="%i"></Environment>
42 <Environment name=INCLUDE default="$ZLIB_BASE/include"></Environment>
43 <Environment name=LIBDIR default="$ZLIB_BASE/lib"></Environment>
44 </client>
45 </Tool>
46 EOF_TOOLFILE
47
48 %post
49 %{relocateConfig}etc/scram.d/%n