void-packages/srcpkgs/boost/template
Juan RP 1c5f4690e6 xbps-src: always require current srcpkgs version in build dependencies.
That means that version comparators are not supported anymore in
hostmakedepends and makedepends.

This will ensure that a pkg is always built with the same build dependencies
everywhere, if the srcpkgs tree is uptodate.
2015-03-27 10:59:58 +01:00

104 lines
2.5 KiB
Bash

# Template file for 'boost'
pkgname=boost
version=1.54.0
revision=5
wrksrc="${pkgname}_${version//\./_}"
makedepends="zlib-devel bzip2-devel icu-devel"
short_desc="Free peer-reviewed portable C++ source libraries"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.boost.org/"
license="Boost Software License 1.0"
distfiles="${SOURCEFORGE_SITE}/$pkgname/${pkgname}_${version//\./_}.tar.bz2"
checksum=047e927de336af106a24bceba30069980c191529fd76b8dff8eb9a328b48ae1d
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
case "$XBPS_TARGET_MACHINE" in
i686*) _bindir="bin.linuxx86";;
x86_64*) _bindir="bin.linuxx86_64";;
arm*) _bindir="bin.linuxarm";;
esac
if [ -z "$CROSS_BUILD" ]; then
vinstall bjam 755 usr/bin
fi
# 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"
depends="boost-build-${version}_${revision}"
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"
short_desc+=" - Boost.Build framework"
pkg_install() {
vmove usr/share/boost-build
vmove etc
}
}
boost-devel_package() {
noverifyrdeps=yes
depends="boost-${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}