diff options
author | barner <barner@FreeBSD.org> | 2005-03-09 21:03:11 +0800 |
---|---|---|
committer | barner <barner@FreeBSD.org> | 2005-03-09 21:03:11 +0800 |
commit | 944e3fbf61d04b23a8473ba5bc933da9b71eecb5 (patch) | |
tree | e608120201b873d4f5bb07b7998cda03bccaa313 /devel | |
parent | ddf6d43cd1c83df67e73a89a0a0654ae950fd9b0 (diff) | |
download | freebsd-ports-gnome-944e3fbf61d04b23a8473ba5bc933da9b71eecb5.tar.gz freebsd-ports-gnome-944e3fbf61d04b23a8473ba5bc933da9b71eecb5.tar.zst freebsd-ports-gnome-944e3fbf61d04b23a8473ba5bc933da9b71eecb5.zip |
- no python implies no pyste (fix conditionally created plist) [1]
- document WITH_PYSTE knob
Pointed out by: lofi [1]
Approved by: arved (mentor)
Diffstat (limited to 'devel')
-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> |