Ports using USE_PYTHON=distutils are now flavored. They will automatically get flavors (py27, py34, py35, py36) depending on what versions they support. There is also a USE_PYTHON=flavors for ports that do not use distutils but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if using distutils but flavors are not wanted. A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been added to cope with Python ports that did not have the Python PKGNAMEPREFIX but are flavored. USES=python now also exports a PY_FLAVOR variable that contains the current python flavor. It can be used in dependency lines when the port itself is not python flavored. For example, deskutils/calibre. By default, all the flavors are generated. To only generate flavors for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf. In all the ports with Python dependencies, the *_DEPENDS entries MUST end with the flavor so that the framework knows which to build/use. This is done by appending '@${PY_FLAVOR}' after the origin (or @${FLAVOR} if in a Python module with Python flavors, as the content will be the same). For example: RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR} PR: 223071 Reviewed by: portmgr, python Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D12464
54 lines
1.8 KiB
Makefile
54 lines
1.8 KiB
Makefile
# Created by: Vladimir Chukharev
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mayavi
|
|
PORTVERSION= 4.5.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= graphics science python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= Vladimir.Chukharev@gmail.com
|
|
COMMENT= Application and library for 3D visualization and plotting in Python
|
|
|
|
LICENSE= BSD3CLAUSE LGPL21 LGPL20 EPL LGPL3 BSD2CLAUSE APACHE11
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/LICENSE.txt
|
|
LICENSE_FILE_LGPL21= ${WRKSRC}/image_LICENSE_Nuvola.txt
|
|
LICENSE_FILE_LGPL20= ${WRKSRC}/image_LICENSE_CP.txt
|
|
LICENSE_FILE_EPL= ${WRKSRC}/image_LICENSE_Eclipse.txt
|
|
LICENSE_FILE_LGPL3= ${WRKSRC}/image_LICENSE_OOo.txt
|
|
LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/LICENSE_YORICK.txt
|
|
LICENSE_FILE_APACHE11= ${WRKSRC}/LICENSE_COLORBREWER.txt
|
|
# See ${WRKSRC}/image_LICENSE.txt for per file license information
|
|
|
|
BUILD_DEPENDS= vtk6>=6.1.0_8:math/vtk6 \
|
|
py27-sphinx>=1.3.1_2:textproc/py-sphinx
|
|
RUN_DEPENDS= vtk6>=6.1.0_8:math/vtk6 \
|
|
${PYNUMPY} \
|
|
${PYTHON_PKGNAMEPREFIX}envisage>=4.4.0:devel/py-envisage@${FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pyface>=4.5.2:devel/py-pyface@${FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}scimath>=4.1.2:science/py-scimath@${FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}traitsui>=4.5.1:graphics/py-traitsui@${FLAVOR}
|
|
|
|
USES= python:-2.7 shebangfix tar:bzip2
|
|
USE_PYTHON= autoplist distutils
|
|
USE_WX= 2.8+
|
|
WX_COMPS= python:run
|
|
SHEBANG_FILES= mayavi/tests/csv_files/csv_2_py
|
|
|
|
DEP1= vtk6
|
|
|
|
pre-configure:
|
|
if [ ! -e ${PREFIX}/lib/python2.7/site-packages/vtk/__init__.py ]; then \
|
|
${ECHO_MSG} "Port math/vtk6 is installed without PYTHON option."; \
|
|
${ECHO_MSG} "Please reinstall with PYTHON selected."; \
|
|
${FALSE}; \
|
|
else \
|
|
${ECHO_MSG} "Good, math/vtk6 is installed with PYTHON option!"; \
|
|
fi
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/tvtk/array_ext.so
|
|
|
|
.include <bsd.port.mk>
|