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

Comparing COMP/CMSDIST/boost.spec (file contents):
Revision 1.4 by eulisse, Thu Mar 2 16:05:38 2006 UTC vs.
Revision 1.10 by ratnik, Wed Apr 18 23:46:01 2007 UTC

# Line 1 | Line 1
1 < ### RPM external boost 1.32.0
1 > ### RPM external boost 1.33.1
2 > Requires: gcc-wrapper
3   # Patches and build fudging by Lassi A. Tuura <lat@iki.fi> (FIXME: contribute to boost)
4   # define boostver -%v <-- for 1.30.2
5   %define boostver _%(echo %v | tr . _)
6 < Requires: boost-build python
6 > Requires: boost-build python bz2lib zlib
7   Source: http://dl.sourceforge.net/sourceforge/%n/%{n}%{boostver}.tar.gz
8   #Patch: boost
9  
# Line 11 | Line 12 | Source: http://dl.sourceforge.net/source
12   #%patch
13  
14   %build
15 + ## IMPORT gcc-wrapper
16   # Note that some targets will fail to build (the test programs have
17   # missing symbols), causing darwin to fail to link and bjam to return
18   # an error.  So ignore the exit code from bjam on darwin to avoid
19   # RPM falsely detecting a problem.
20   PR="PYTHON_ROOT=$PYTHON_ROOT"
21   PV="PYTHON_VERSION=$(echo $PYTHON_VERSION | sed 's/\.[0-9]*$//')"
22 + BZ2LIBR="BZ2LIB_LIBPATH=$BZ2LIB_ROOT/lib"
23 + ZLIBR="ZLIB_LIBPATH=$ZLIB_ROOT/lib"
24 + BZ2LIBI="BZ2LIB_INCLUDE=$BZ2LIB_ROOT/include"
25 + ZLIBI="ZLIB_INCLUDE=$ZLIB_ROOT/include"
26 +
27   case $(uname) in
28 <  Darwin )  bjam -s$PR -s$PV -sTOOLS=darwin || true ;;
29 <  * )       bjam -s$PR -s$PV -sTOOLS=gcc ;;
28 >  Darwin )  bjam -s$PR -s$PV -s$BZ2LIBR -s$ZLIBR -sTOOLS=darwin || true ;;
29 >  * )       bjam -s$PR -s$PV -s$BZ2LIBR -s$ZLIBR -sTOOLS=gcc ;;
30   esac
31  
32   %install
33 < boost_abi=$(echo %boostver | sed 's/^_//; s/_[0-9]*$//')
33 > boost_abi=$(echo %boostver | sed 's/^_//; s/_0$//')
34   case $(uname) in Darwin ) so=dylib ;; * ) so=so ;; esac
35   mkdir -p %i/lib/debug
36   (cd bin/boost; find libs -path "libs/*/debug/*.$so" -exec cp {} %i/lib/debug \;)
37   (cd bin/boost; find libs -path "libs/*/release/*.$so" -exec cp {} %i/lib \;)
38 < find boost -name '*.h' -o -name '*.hpp' -print |
38 > find boost -name '*.[hi]*' -print |
39    while read f; do
40      mkdir -p %i/include/$(dirname $f)
41      install -c $f %i/include/$f
# Line 42 | Line 49 | find libs -name '*.py' -print |
49    for f in %i/lib/*.$so %i/lib/debug/*.$so; do
50      install_name_tool -id $f $f
51    done
52 +
53   (cd %i/lib; for f in lib*-$boost_abi.$so; do ln -s $f $(echo $f | sed "s/-$boost_abi//"); done)
54   (cd %i/lib; for f in lib*-$boost_abi.$so; do ln -s $f $f.%v ; done)
55   (cd %i/lib/debug; for f in lib*-d-$boost_abi.$so; do ln -s $f $(echo $f | sed "s/-d-$boost_abi//"); done)
56   (cd %i/lib/debug; for f in lib*-d-$boost_abi.$so; do ln -s $f $f.%v; done)
57   (cd %i/lib/libs/python/pyste/install; python setup.py install --prefix=%i)
58 +
59 + perl -p -i -e "s|^#!.*python|/usr/bin/env python|" $(find %{i}/lib %{i}/bin)
60 +
61 + #
62 + #

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines