c22df1760f
New Libraries: Atomic: C++11-style atomic<>, from Helge Bahmann, maintained by Tim Blechmann. Coroutine: Coroutine library, from Oliver Kowalke. Lockfree: Lockfree data structures, from Tim Blechmann. Multiprecision: Extended precision arithmetic types for floating point, integer and rational arithmetic from John Maddock and Christopher Kormanyos. Odeint: Solving ordinary differential equations, from Karsten Ahnert and Mario Mulansky. News This release contains a fix for ticket 7743, in Boost.Locale. For more details, see the security notice. More info http://www.boost.org/users/history/version_1_53_0.html
29 lines
755 B
Makefile
29 lines
755 B
Makefile
# $NetBSD: Makefile,v 1.9 2013/02/12 21:07:21 adam Exp $
|
|
|
|
BOOST_PACKAGE= jam
|
|
BOOST_COMMENT= (Boost.Jam utility)
|
|
BOOST_CONFIG= no
|
|
|
|
CONFLICTS+= boost-build<=1.33.1
|
|
|
|
.include "../../meta-pkgs/boost/Makefile.common"
|
|
|
|
SUBST_CLASSES+= bb
|
|
SUBST_MESSAGE.bb= Fixing path to Boost.Build files.
|
|
SUBST_STAGE.bb= pre-build
|
|
SUBST_FILES.bb= tools/build/v2/engine/Jambase
|
|
SUBST_SED.bb= -e 's,/usr/share/boost-build,${PREFIX}/share/boost-build,g'
|
|
|
|
.include "../../devel/boost-build/toolset.mk"
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/tools/build/v2/engine && \
|
|
${SETENV} ${MAKE_ENV} ${SH} ./build.sh ${BOOST_TOOLSET}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tools/build/v2/engine/bin.*/bjam \
|
|
${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|