1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/devel/boost-jam/Makefile
Baptiste Daroussin 776c8a3824 Update to boost 1.55.0
switch back to normal library naming
Add a compat symlink for .so.5
Use compiler.mk to detect compiler
Use a modern compiler (doesn't work with base gcc)
2014-02-07 11:43:02 +00:00

23 lines
514 B
Makefile

# Created by: Alexander Churanov <churanov.port.maintainer@gmail.com>
# $FreeBSD$
PORTNAME= boost-jam
COMMENT= Build tool from the boost.org
PLIST_FILES= bin/bjam
EXTRACT_AFTER_ARGS= ${DISTNAME}/tools/build/v2/engine
.include "${.CURDIR}/../boost-all/common.mk"
do-build:
cd ${WRKSRC}/tools/build/v2/engine && \
${MAKE_ENV} ./build.sh ${CC}
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/tools/build/v2/engine/bin.*/bjam \
${STAGEDIR}${PREFIX}/bin/
.include <bsd.port.mk>