mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
776c8a3824
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)
23 lines
514 B
Makefile
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>
|