diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2018-05-25 21:46:30 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2018-05-25 21:46:30 +0000 |
commit | 07ff49edd6642bcd9039e9fa4038dbc97f1100cb (patch) | |
tree | 0f943c4e4552887dbefe2f7e37bcbde3344e8a72 | |
parent | Update lang/ghc 8.4.2 and the hs-* ports the newer versions (diff) |
- seexpr is not compatible with python3
- fix build with DEFAULT_VERSIONS=python=3.x
Notes
Notes:
svn path=/head/; revision=470871
-rw-r--r-- | graphics/seexpr/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/seexpr/Makefile b/graphics/seexpr/Makefile index 9f9c7722e04b..cb0f7973edaf 100644 --- a/graphics/seexpr/Makefile +++ b/graphics/seexpr/Makefile @@ -16,9 +16,10 @@ USE_GITHUB= yes GH_ACCOUNT= wdas GH_PROJECT= SeExpr -USES= bison cmake compiler:c++0x pyqt:4 python +USES= bison cmake compiler:c++0x pyqt:4 python:2.7 USE_PYQT= gui_build sip_build USE_QT4= moc_build qmake_build rcc_build uic_build gui opengl +BINARY_ALIAS= sip=sip-${PYTHON_VER} MAKE_JOBS_UNSAFE= yes # https://github.com/wdas/seexpr/issues/40 |