2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: Boost paketi C++ için özgür ve taşınabilir kaynak kütüphanelerinden oluşan bir settir.
|
2016-02-24 01:27:23 +01:00
|
|
|
|
# URL: http://boost.sourceforge.net/
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: icu python python3
|
2017-12-22 23:19:06 +01:00
|
|
|
|
# Grup: kütüphane
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-10-28 14:10:23 +02:00
|
|
|
|
isim=boost
|
|
|
|
|
surum=1.65.1
|
|
|
|
|
devir=1
|
|
|
|
|
kaynak=(https://downloads.sourceforge.net/project/${isim}/${isim}/${surum}/${isim}_${_boostver}.tar.bz2)
|
2016-02-24 01:27:23 +01:00
|
|
|
|
|
2017-12-22 23:19:06 +01:00
|
|
|
|
_boostver=${version//./_}
|
2017-10-27 23:59:41 +02:00
|
|
|
|
derle() {
|
2016-12-25 10:28:33 +01:00
|
|
|
|
export _stagedir="${SRC}/stagedir"
|
|
|
|
|
local JOBS="$(sed -e 's/.*\(-j *[0-9]\+\).*/\1/' <<< ${MAKEFLAGS})"
|
2017-10-28 14:10:23 +02:00
|
|
|
|
cd ${isim}_${_boostver}
|
2016-12-25 10:28:33 +01:00
|
|
|
|
./bootstrap.sh --with-toolset=gcc --with-icu --with-python=/usr/bin/python2
|
|
|
|
|
install -Dm755 ./b2 "${_stagedir}"/bin/b2
|
|
|
|
|
# default "minimal" install: "release link=shared,static
|
|
|
|
|
# runtime-link=shared threading=single,multi"
|
|
|
|
|
# --layout=tagged will add the "-mt" suffix for multithreaded libraries
|
|
|
|
|
# and installs includes in /usr/include/boost.
|
|
|
|
|
# --layout=system no longer adds the -mt suffix for multi-threaded libs.
|
|
|
|
|
# install to ${_stagedir} in preparation for split packaging
|
|
|
|
|
"${_stagedir}"/bin/b2 \
|
|
|
|
|
variant=release \
|
|
|
|
|
debug-symbols=off \
|
|
|
|
|
threading=multi \
|
|
|
|
|
runtime-link=shared \
|
|
|
|
|
link=shared,static \
|
|
|
|
|
toolset=gcc \
|
|
|
|
|
python=2.7 \
|
|
|
|
|
cflags="${CPPFLAGS} ${CFLAGS} -fPIC -O3" \
|
|
|
|
|
cxxflags="${CPPFLAGS} ${CXXFLAGS} -std=c++14 -fPIC -O3" \
|
|
|
|
|
--layout=system \
|
|
|
|
|
${JOBS} \
|
|
|
|
|
\
|
|
|
|
|
--prefix="${_stagedir}" \
|
|
|
|
|
install
|
|
|
|
|
# because b2 in boost 1.62.0 doesn't seem to respect python parameter, we
|
|
|
|
|
# need another run for liboost_python3.so
|
|
|
|
|
sed -e '/using python/ s@;@: /usr/include/python${PYTHON_VERSION/3*/${PYTHON_VERSION}m} ;@' \
|
|
|
|
|
-i bootstrap.sh
|
|
|
|
|
./bootstrap.sh --with-toolset=gcc --with-icu --with-python=/usr/bin/python3 \
|
|
|
|
|
--with-libraries=python
|
2017-09-20 17:23:51 +02:00
|
|
|
|
|
|
|
|
|
"${_stagedir}"/bin/b2 clean
|
2016-12-25 10:28:33 +01:00
|
|
|
|
"${_stagedir}"/bin/b2 \
|
|
|
|
|
variant=release \
|
|
|
|
|
debug-symbols=off \
|
|
|
|
|
threading=multi \
|
|
|
|
|
runtime-link=shared \
|
|
|
|
|
link=shared,static \
|
|
|
|
|
toolset=gcc \
|
|
|
|
|
python=3.5 \
|
|
|
|
|
cflags="${CPPFLAGS} ${CFLAGS} -fPIC -O3" \
|
|
|
|
|
cxxflags="${CPPFLAGS} ${CXXFLAGS} -std=c++14 -fPIC -O3" \
|
|
|
|
|
--layout=system \
|
|
|
|
|
${JOBS} \
|
|
|
|
|
--prefix="${_stagedir}/python3" \
|
|
|
|
|
--with-python \
|
|
|
|
|
install
|
|
|
|
|
install -dm755 "${PKG}"/usr
|
|
|
|
|
cp -a "${_stagedir}"/{bin,include} "${PKG}"/usr
|
|
|
|
|
install -d "${PKG}"/usr/lib
|
|
|
|
|
cp -a "${_stagedir}"/lib/*.a "${PKG}"/usr/lib/
|
|
|
|
|
install -Dm644 "${_stagedir}"/python3/lib/libboost_python3.a \
|
|
|
|
|
"${PKG}"/usr/lib/libboost_python3.a
|
|
|
|
|
install -dm755 "${PKG}"/usr
|
|
|
|
|
cp -a "${_stagedir}"/lib "${PKG}"/usr
|
|
|
|
|
cp -a "${_stagedir}"/python3/lib/libboost_python3* "${PKG}"/usr/lib
|
2016-02-24 01:27:23 +01:00
|
|
|
|
}
|