diff options
author | Simon Barner <barner@FreeBSD.org> | 2005-03-09 13:03:11 +0000 |
---|---|---|
committer | Simon Barner <barner@FreeBSD.org> | 2005-03-09 13:03:11 +0000 |
commit | e812c7abc55260c800860b8b942a7fee8c67b307 (patch) | |
tree | e0ef1bffc8aa551be67a33ed550c4ade53580033 | |
parent | Now that WITH_AUTHLIB=yes case has been finally fixed, (diff) |
- no python implies no pyste (fix conditionally created plist) [1]
- document WITH_PYSTE knob
Pointed out by: lofi [1]
Approved by: arved (mentor)
Notes
Notes:
svn path=/head/; revision=130718
-rw-r--r-- | devel/boost/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/devel/boost/Makefile b/devel/boost/Makefile index 9793eaeaee50..d428adb4a1a2 100644 --- a/devel/boost/Makefile +++ b/devel/boost/Makefile @@ -50,6 +50,9 @@ WITH_PYTHON= IMPLIED_BY_PYSTE # -DWITH_PYTHON on the command line or use the devel/boost-python # slave port. # +# To build Pyste, the Boost.Python code generator use -DWITH_PYSTE +# (this implies -DWITH_PYTHON). +# .if defined(WITH_PYTHON) PKGNAMESUFFIX= -python USE_PYTHON= 2.3+ @@ -68,6 +71,7 @@ PLIST_SUB+= BOOST_PYSTE="@comment " .endif .else PLIST_SUB+= BOOST_PYTHON="@comment " +PLIST_SUB+= BOOST_PYSTE="@comment " .endif .include <bsd.port.pre.mk> |