# Template file for 'boost' pkgname=boost version=1.53.0 revision=1 _boostver="$(echo $version|sed 's|\.|_|g')" wrksrc="${pkgname}_${_boostver}" makedepends="zlib-devel bzip2-devel icu-devel>=49.1" short_desc="Free peer-reviewed portable C++ source libraries" maintainer="Juan RP " homepage="http://www.boost.org/" license="Boost Software License 1.0" distfiles="${SOURCEFORGE_SITE}/$pkgname/${pkgname}_${_boostver}.tar.bz2" checksum=f88a041b01882b0c9c5c05b39603ec8383fb881f772f6f9e6e6fd0e0cddb9196 long_desc=" The Boost web site provides free peer-reviewed portable C++ source libraries. The emphasis is on libraries which work well with the C++ Standard Library. The libraries are intended to be widely useful, and are in regular use by thousands of programmers across a broad spectrum of applications." if [ -z "$CROSS_BUILD" ]; then # XXX boost-jam and boost-python subpkgs. makedepends+=" python-devel" fi do_build() { if [ "$CROSS_BUILD" ]; then case "$XBPS_TARGET_MACHINE" in arm*) _arch=arm; _toolset="gcc-arm";; mips*) _arch=mips; _toolset="gcc-mips";; esac echo "using gcc : ${_arch} : ${XBPS_CROSS_TRIPLET}-g++ ${CXXFLAGS} ;" > \ tools/build/v2/user-config.jam else _toolset=gcc echo "using gcc : : g++ ${CXXFLAGS} ;" > tools/build/v2/user-config.jam fi ./bootstrap.sh -prefix=${DESTDIR}/usr ./bjam --toolset=${_toolset} ${makejobs} } do_install() { # Install bjam if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then _bindir="bin.linuxx86" elif [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then _bindir="bin.linuxx86_64" elif [ "$XBPS_TARGET_MACHINE" = "armv6l" ]; then _bindir="bin.linuxarm" fi [ -z "$CROSS_BUILD" ] && vinstall bjam 755 usr/bin # Install headers/libs ./bjam --prefix=${DESTDIR}/usr install # Install Boost.Build stuff. vmkdir usr/share/boost-build cd ${wrksrc}/tools/build/v2 && cp -a . ${DESTDIR}/usr/share/boost-build find ${DESTDIR}/usr/share/boost-build \ -type f -name \*.orig -exec rm -f {} \; ( echo '# System wide configuration file for Boost.Build.' ; \ echo ; \ echo 'using gcc ;' ; ) >${wrksrc}/site-config.jam cd $wrksrc vinstall site-config.jam 644 etc # license vinstall LICENSE_1_0.txt 644 usr/share/licenses/boost } if [ -z "$CROSS_BUILD" ]; then boost-jam_package() { short_desc+=" - Boost.Jam utility" pkg_install() { vmove usr/bin/bjam } } boost-python_package() { depends="boost-${version}_${revision} python" short_desc+=" - python bindings" pkg_install() { vmove "usr/lib/libboost_python*" } } fi # !CROSS_BUILD boost-build_package() { noarch=yes conf_files="/etc/site-config.jam" depends="boost-jam>=$version boost-devel>=$version" short_desc+=" - Boost.Build framework" pkg_install() { vmove usr/share/boost-build vmove etc } } boost-devel_package() { depends="boost-${version}_${revision}" short_desc+=" - development files" pkg_install() { vmove usr/include vmove "usr/lib/*.a" vmove "usr/lib/*.so" } } boost_package() { pkg_install() { vmove usr } }