It's not really important for me, but I tell or report it:
Blender-2.71 installs fine with normal options. If I check the options gameengine and player this install-error appears:
I think it's not really related to the error. But when I commented out this lines in the Makefile it works (man installation):
lines 229 - 232
and
lines 295 . 298
Blender-2.71 installs fine with normal options. If I check the options gameengine and player this install-error appears:
Code:
Linking CXX executable ../../bin/blender
now run: "make install" to copy runtime files and scripts to /usr/ports/graphics/blender/work/.build/bin/2.71
[100%] Built target blender
executing: /usr/ports/graphics/blender/work/.build/bin/blender --help
Assertion failed: (!posix::pthread_mutex_destroy(&m)), function ~mutex, file /usr/local/include/boost/thread/pthread/mutex.hpp, line 108.
Traceback (most recent call last):
File "blender.1.py", line 55, in <module>
blender_help = subprocess.check_output(cmd).decode(encoding="utf-8")
File "/usr/local/lib/python3.4/subprocess.py", line 620, in check_output
raise CalledProcessError(retcode, process.args, output=output)
subprocess.CalledProcessError: Command '['/usr/ports/graphics/blender/work/.build/bin/blender', '--help']' returned non-zero exit status -6
*** [post-build] Error code 1
Stop in /usr/ports/graphics/blender.
*** [install] Error code 1
I think it's not really related to the error. But when I commented out this lines in the Makefile it works (man installation):
lines 229 - 232
Code:
228 post-build:
229 @(cd ${WRKSRC}/doc/manpage && \
230 #${PYTHON_CMD} blender.1.py \
231 ${INSTALL_WRKSRC}/bin/blender \
232 ${INSTALL_WRKSRC}/bin/${PORTNAME}.1)
and
lines 295 . 298
Code:
#
295 ${INSTALL_MAN} ${INSTALL_WRKSRC}/bin/${PORTNAME}.1 \
296 ${STAGEDIR}${MAN1PREFIX}/man/man1
297 @${ECHO} man/man1/${PORTNAME}.1.gz >> ${TMPPLIST}
298
299 .include <bsd.port.post.mk>