boost: 1.33.1 -> 1.34.0

This commit is contained in:
Danny Rawlins 2007-05-14 18:32:18 +10:00
parent 32db96a767
commit c4aab20756
3 changed files with 4328 additions and 3865 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1 +1 @@
2b999b2fb7798e1737d1fff8fac602ef boost_1_33_1.tar.bz2
ed5b9291ffad776f8757a916e1726ad0 boost_1_34_0.tar.bz2

View File

@ -5,30 +5,15 @@
# Depends on: python
name=boost
version=1.33.1
version=1.34.0
release=1
source=(http://dl.sourceforge.net/sourceforge/boost/boost_${version//./_}.tar.bz2)
build() {
cd boost_${version//./_}
cd tools/build/jam_src
./build.sh gcc
cd -
export PYTHON_LIB_PATH="/usr/lib/python" PYTHON_INCLUDES="/usr/include/python"
./tools/build/jam_src/bin.linuxx86/bjam \
"-sTOOLS=gcc" --prefix=/usr --with-python-root=/usr
./tools/build/jam_src/bin.linuxx86/bjam \
"-sTOOLS=gcc" --prefix=$PKG/usr --with-python-root=/usr install
mv $PKG/usr/include/boost-${version//./_}/boost $PKG/usr/include
rm -fr $PKG/usr/include/boost-${version//./_}
cd $PKG/usr/lib
for l in *gcc-mt.so; do
fileName=`basename $l -gcc-mt.so`
ln -s $fileName-gcc-mt.so $fileName.so
done
cd boost_${version//./_}
./configure --prefix=$PKG/usr
make
#make check
make install
}