diff options
Diffstat (limited to 'math/vtk43/Makefile')
-rw-r--r-- | math/vtk43/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/math/vtk43/Makefile b/math/vtk43/Makefile index e5dc225..0f97c57 100644 --- a/math/vtk43/Makefile +++ b/math/vtk43/Makefile @@ -22,24 +22,21 @@ WRKSRC= $(WRKDIR)/vtk31 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-mesa --with-shared --with-tcl --with-bsdmake CONFIGURE_ARGS+= --with-contrib --with-tkwidget -CONFIGURE_ENV= CFLAGS="${CFLAGS}" CXXFLAGS="${CFLAGS}" # Support for Python is compiled in by default. -WITH_PYTHON?= yes -.if defined(WITH_PYTHON) && $(WITH_PYTHON) == yes +.if !defined(WITHOUT_PYTHON) CONFIGURE_ARGS+= --with-python BUILD_DEPENDS+= python:${PORTSDIR}/lang/python RUN_DEPENDS+= python:${PORTSDIR}/lang/python .endif -WITH_PATENTED?= no -.if defined(WITH_PATENTED) && $(WITH_PATENTED) == yes +.if defined(WITH_PATENTED) CONFIGURE_ARGS+= --with-patented PLIST= ${PKGDIR}/PLIST.with_patented .endif post-install: -.if defined(WITH_PYTHON) && $(WITH_PYTHON) == yes +.if !defined(WITHOUT_PYTHON) ${PREFIX}/bin/python -c "import compileall; compileall.compile_dir( '${PREFIX}/lib/vtk/python' );" ${PREFIX}/bin/python -Oc "import compileall; compileall.compile_dir( '${PREFIX}/lib/vtk/python' );" .endif |