mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
221637a53e
PR: ports/156253 Submitted by: Alexander Churanov (maintainer) Approved by: portmgr (linimon)
28 lines
657 B
Makefile
28 lines
657 B
Makefile
# Ports collection makefile for: boost-jam
|
|
# Date Created: 15 March 2009
|
|
# Whom: Alexander Churanov <churanov.port.maintainer@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= boost-jam
|
|
COMMENT= Build tool from the boost.org
|
|
USE_BZIP2= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${PORTSDIR}/devel/boost-all/common.mk"
|
|
|
|
BJAM= ${WRKSRC}/bjam
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/toolset cc/,/;/ { /opt --release/d; }' ${WRKSRC}/tools/build/v2/engine/build.jam
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${MAKE_ENV} ./bootstrap.sh --with-toolset=cc --prefix=${PREFIX}
|
|
|
|
do-install:
|
|
${MKDIR} ${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${BJAM} ${PREFIX}/bin/
|
|
|
|
.include <bsd.port.post.mk>
|