errors with libc++ 3.8.0:
In file included from src/QScoreAdapter.cpp:1:
In file included from src/QScoreAdapter.h:4:
In file included from ../../include/U2Core/MAlignment.h:1:
In file included from ../../include/U2Core/../../corelibs/U2Core/src/datatype/MAlignment.h:25:
In file included from ../../include/U2Core/../../corelibs/U2Core/src/datatype/MAlignmentInfo.h:25:
In file included from /usr/local/include/qt5/QtCore/QString:1:
In file included from /usr/local/include/qt5/QtCore/qstring.h:41:
In file included from /usr/local/include/qt5/QtCore/qchar.h:37:
In file included from /usr/local/include/qt5/QtCore/qglobal.h:39:
/usr/include/c++/v1/cstddef:43:15: fatal error: 'stddef.h' file not found
#include_next <stddef.h>
^
This is because the port tries to add /usr/include as a system include
directory, using -isystem, and this screws up the order of include
directories. Fix it by patching up a number of .pri files to avoid
using the -isystem flag.
Approved by: h2+fbsdports@fsfe.org (maintainer)
PR: 209366
MFH: 2016Q2
since around v1.18.0, UGENE is using Google's Breakpad library for crash
reporting, which is very system-specific and does not support FreeBSD at
the moment. Due to lack of resources and interest in porting it, simply
disable crash reporting code for the time being.
- Explicitly list all required Qt components in USE_QT4 instead of relying
on them being silently picked up through `www/webkit-qt4' dependency
- Group *_build components together while here
- Remove one REINPLACE_CMD call that is no longer needed
- Remove patches integrated upstream (it's nice to have direct contact)
- Sort USES and pkg-plist, cleanup Makefile a bit while here
Approved by: maintainer (implicit)
pretty cleanly with GCC v4.2, v4.6, and Clang (modulo a few warnings)
- Sadly, do not use PORTDOCS: since DOCSDIR is set to be inside DATADIR,
and will get appended to PLIST after @dirrm %%DATADIR%%, which upsets
sanity checking tools; instead, list the docs explicitly in DISTFILES
and add them to pkg-plist (guarded by %%PORTDOCS%%)
Tested on: i386 (only)
- Conditionalize dependency on `devel/libexecinfo'
- Try to detect SSE2 support
- Convert to USES=qmake and stafigy
- Improve grammar in port description while here
Approved by: maintainer (implicit)