Changes:
- rename install --from-root into install --recursive to avoid confusions
- cleanup old packages later which reduces the window when the filesystem is "unstable"
- fix issue with recursive deps when using pkg add
- additional MASTER_SITE (there was only one)
- tidied Makefile considerably
- fixed failure to build under different PREFIX
- added DOC option
- added EXAMPLES option, and now can have examples (there were none before)
- eliminated numerous compilation warnings
- REMOVED pkg-plist (only two files in it)
- REMOVED pkg-message (now redundant)
- ADDED new patches in files/
PR: 209379
Submitted by: bob@eager.cx (maintainer)
- This new version also allows octave-forge-video to build successfully once
multimedia/ffmpeg is updated to 3.0.x. Note that multimedia/ffmpeg is
currently still on the 2.8.x branch, however this update is backwards
compatible with ffmpeg 2.8.x.
- Add CPPFLAGS+=-I${LOCALBASE}/include to allow build to find ffmpeg headers.
PR: ports/209380
Submitted by: Ben Woods <woodsb02@gmail.com>
Gitblit is an open-source, pure Java stack for managing, viewing,
and serving Git repositories. It's designed primarily as a tool for
small workgroups who want to host centralized repositories.
Gitblit WAR is what you should download if you already have a servlet
container available that you wish to use. Jetty 6/7/8 and Tomcat
6/7 are known to work. Generally, any Servlet 2.5 or Servlet 3.0
container should work.
Gitblit can be used as a dumb repository viewer with no administrative
controls or user accounts. Gitblit can be used as a complete Git
stack for cloning, pushing, and repository access control. Gitblit
can be used without any other Git tooling (including actual Git)
or it can cooperate with your established tools.
WWW: http://gitblit.com/
PR: 203072
Submitted by: Dusan Vejnovic <freebsd@dussan.org>
gives errors with libc++ 3.8.0:
handler.cc:536:21: error: static declaration of 'abs' follows non-static declaration
static inline float abs(float x) { return x > 0 ? x : -x; }
^
/usr/include/c++/v1/math.h:646:1: note: previous definition is here
abs(float __lcpp_x) _NOEXCEPT {return fabsf(__lcpp_x);}
^
This is because easystroke tries to roll its own version of abs(), which
is already defined in math.h. Fix this by removing the custom abs().
Approved by: t@tobik.me (maintainer)
PR: 209372
MFH: 2016Q2
on java/linux-sun-jre17. The latter port expired two months ago.
While here address portlint issues:
- regenerate patches
- use %%DATADIR%% in pkg-plist
- use PKGNAMEPREFIX
- add java to CATEGORIES
- remove empty trailing line from pkg-message
PR: 209012
Submitted by: myself
Approved by: maintainer timeout (subtil@gmail.com, 14 days)
This module reads e-mail messages stored as .msg files (such as generated
by Outlook), and converts them to Email::MIME objects. It also includes a
command-line interface in the form of the msgconvert script.
Such files may be identified by file(1) as follows:
Composite Document File V2 Document
You do not need Outlook installed to use this module.
WWW: http://search.cpan.org/dist/Email-Outlook-Message/
PR: 209373
Submitted by: John Hein <z7dr6ut7gs@snkmail.com>
gives errors with libc++ 3.8.0:
gmake[2]: Entering directory '/wrkdirs/usr/ports/chinese/sunpinyin/work'
slmpack lm_sc.3gm.arpa dict.utf8 lm_sc.3gm
Loading lexicon...done.
Loading ARPA slm...
Writing out...done!
slmthread lm_sc.3gm lm_sc.t3g.orig
Loading original slm...
first pass...
Compressing pr values...65536 float values ==> 65536 values
Compressing bow values...16384 float values ==> 16384 values
Threading the new model...Assertion failed: (prit != pr_map.end()), function main, file src/slm/thread/slmthread.cpp, line 364.
/wrkdirs/usr/ports/chinese/sunpinyin/work/sunpinyin-a8bd811/src/sunpinyin-dictgen.mk:51: recipe for target 'lm_sc.t3g.orig' failed
This is because the code mostly uses floats, but in some parts it uses
log(), exp(), etc, which return doubles. During the parts where it does
lookups in std::map<float, int> constructs, this leads to it not being
able to find the expected entries. Fix this by using logf(), expf() and
similar, which explicitly return floats.
Approved by: lichray@gmail.com (maintainer)
PR: 209369
MFH: 2016Q2
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
lqt_ffmpeg.c:389:13: error: use of undeclared identifier 'CODEC_ID_MPEG1VIDEO'; did you mean 'AV_CODEC_ID_MPEG1VIDEO'?
.id = CODEC_ID_MPEG1VIDEO,
^~~~~~~~~~~~~~~~~~~
lqt_ffmpeg.c:547:13: error: use of undeclared identifier 'CODEC_ID_SVQ1'; did you mean 'AV_CODEC_ID_SVQ1'?
.id = CODEC_ID_SVQ1,
^~~~~~~~~~~~~
[...]
PR: 209348
Reported by: antoine (via exp-run)
Submitted by: Ben Woods <woodsb02@gmail.com>
Obtained from: Debian
thumbnailffmpeg_extractor.c:156:22: error: variable has incomplete type 'enum PixelFormat'
enum PixelFormat src_pixfmt,
^
thumbnailffmpeg_extractor.c:212:40: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean 'AV_PIX_FMT_RGB24'?
av_malloc (avpicture_get_size (PIX_FMT_RGB24, dst_width, dst_height))))
^~~~~~~~~~~~~
thumbnailffmpeg_extractor.c:223:19: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean 'AV_PIX_FMT_RGB24'?
PIX_FMT_RGB24, dst_width, dst_height);
^~~~~~~~~~~~~
thumbnailffmpeg_extractor.c:258:32: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean 'AV_PIX_FMT_RGB24'?
encoder_codec_ctx->pix_fmt = PIX_FMT_RGB24;
^~~~~~~~~~~~~
thumbnailffmpeg_extractor.c:455:44: error: argument type 'enum PixelFormat' is incomplete
frame->linesize, codec_ctx->pix_fmt,
^~~~~~~~~~~~~~~~~~
thumbnailffmpeg_extractor.c:630:44: error: argument type 'enum PixelFormat' is incomplete
frame->linesize, codec_ctx->pix_fmt,
^~~~~~~~~~~~~~~~~~
PR: 209121
Reported by: antoine (via exp-run)
Submitted by: Ben Woods <woodsb02@gmail.com>
Obtained from: Debian