blob: 36a8718fefddeaef0abda06eecddf75baca36ceb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $NetBSD: Makefile,v 1.5 2016/06/24 20:32:08 fhajny Exp $
BOOST_PACKAGE= python
BOOST_COMMENT= (Boost.Python binary library)
BOOST_CONFIG= installed
INSTALLATION_DIRS+= lib
.include "../../meta-pkgs/boost/Makefile.common"
PKGNAME= ${PYPKGPREFIX}-boost-${BOOST_VERSION}
BJAM_ARGS+= --user-config=${WRKSRC}/user-config.jam
BJAM_ARGS+= --with-python
MAKE_ENV+= BOOST_BUILD_PATH=${WRKSRC}
.include "../../devel/boost-jam/bjam.mk"
.include "../../lang/python/application.mk"
post-configure:
${ECHO} 'using python : ${PYVERSSUFFIX} :' \
'${PREFIX}/bin/python${PYVERSSUFFIX} ;' \
>${WRKSRC}/user-config.jam
do-build: bjam-build
do-install: boost-install-libs
.if ${PYPKGPREFIX} != py27
# The python3 variant also includes redundant copies of the libs
# that conflict with the python2 variant.
post-install:
${RM} ${DESTDIR}${PREFIX}/lib/libboost_python.*
.endif
.include "../../mk/bsd.pkg.mk"
|