Log:
- Use libass from ports instead of bundled version (this likely
addresses some vulnerabilities since bundled libass is from 2013)
- New default OPTION ASS
- Bump portrevision
Reported by: jbeich
MFH: 2017Q1
Log:
- Remove OCFLAGS option. This is no longer a big topic since all
computationally expensive code is handled via external ffmpeg
libraries now
- Remove BUILD_DEPENDS on yasm. No yasm asm files are compiled
during mplayer / mencoder build process anymore
- Bump PORTREVISION
FreeBSD 10+ has bmake(1) from NetBSD, which ignores stale .depend
entries. To successfully build on older releases, we have to remove
the incriminated file.
ld.bfd from devel/binutils by default looks under LOCALBASE/lib. If we
revert to ld.bfd (or even ld.lld) from base the following would happen.
===> Configuring for ffmpeg-3.2.2_2,1
ERROR: gmp not found
Submitted by: marino
- replace feedparser with podcastparser. This change was done upstream in
version 3.9.2, so the current version is broken, and this is why I requesting
MFH.
- add patch to make network detection routine work with wireless interfaces in
FreeBSD
MFH: 2016Q4
Windows, Mac and Linux. Major features include support for a wide
range of formats; no import required meaning native timeline editing;
Blackmagic Design support for input and preview monitoring; and
resolution support to 4k.
WWW: https://shotcutapp.com
(filters, transitions, etc.) to be authored using web technologies
(HTML, CSS, JavaScript, WebGL, etc.) or with Qt Quick QML (a
declarative CSS and JavaScript like language).
WebVfx includes plugins for the MLT open source multimedia framework.
WWW: https://www.mltframework.org/doxygen/webvfx/
- Cleanup the Python slave port [2]
- Bump PORTREVISION.
[1] Ports can now force the dependency on Qt plugin, which is needed
by Kdenlive. Having two different (conflicting) versions will help
with the transition to the KF5-dependent Kdenlive.
[2] Creating slave ports for other SWIG bindings should now be easy.
Release notes: https://www.kde.org/announcements/kde-frameworks-5.29.0.php
New ports:
* textproc/kf5-syntax-highlighting (new in 5.28.0)
* graphics/kf5-prison (new in 5.29.0)
Fixes:
* kf5-kservice: Move applications.menu to kf5-applications.menu to stop conflicting with kdelibs4.
* Define conflicts in the kde4-l10n ports (debian does the same).
* kf5-kapidox: Fix with python3
Thanks to Matthew Rezny <matthew@reztek.cz> for looking at the conflicts in 214528,
and Dima Panov (fluffy@) for the python3 fix.
PR: 214528
Reviewed by: rakuco, mat
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D8776
Project has moved to Github and is under active development
Add support for Sqlite 3 database
Convert to options helpers
Move 3 line pkg-plist into the Makefile
Worse is better. To fix properly one would have to replace OPENSSL in
RTMP with a synthetic option that _IMPLIES=OPENSSL.
PR: 215306
Reported by: Laurence 'GreenReaper' Parry
GMP is enabled by default as GNUTLS indirectly pulls math/gmp mimicing
the behavior in ffmpeg-2.8.10.
PR: 208457 (lost in a mismerge)
Reported by: sunpoet
- Switch to options helpers
- Cosmetic fixes
- Remove broken extra patch
- Turn non-optional extra patch to regular patch
- Fix Makefile.plugins to not override PLIST_SUB
In file included from producer_avformat.c:153:
./vdpau.c:162:11: error: no member named 'type' in 'struct AVFrame'
frame->type = FF_BUFFER_TYPE_USER;
~~~~~ ^
./vdpau.c:162:18: error: use of undeclared identifier 'FF_BUFFER_TYPE_USER'
frame->type = FF_BUFFER_TYPE_USER;
^
./vdpau.c:165:16: error: no member named 'reference' in 'struct AVFrame'
if ( frame->reference )
~~~~~ ^
./vdpau.c:239:21: error: no member named 'get_buffer' in 'struct AVCodecContext'; did you mean 'get_buffer2'?
self->video_codec->get_buffer = vdpau_get_buffer;
^~~~~~~~~~
get_buffer2
/usr/local/include/libavcodec/avcodec.h:2565:11: note: 'get_buffer2' declared here
int (*get_buffer2)(struct AVCodecContext *s, AVFrame *frame, int flags);
^
./vdpau.c:240:21: error: no member named 'release_buffer' in 'struct AVCodecContext'
self->video_codec->release_buffer = vdpau_release_buffer;
~~~~~~~~~~~~~~~~~ ^
PR: 214197
Reported by: antoine (via exp-run)
Suggested by: matthew@reztek.cz
Approved by: portmgr blanket
screenshot.c:60:5: error: implicit declaration of function 'avcodec_free_frame' is invalid in C99
[-Werror,-Wimplicit-function-declaration]
avcodec_free_frame(&ctx->pic);
^
screenshot.c:72:20: error: implicit declaration of function 'avcodec_alloc_frame' is invalid in C99
[-Werror,-Wimplicit-function-declaration]
ctx->pic = avcodec_alloc_frame();
^
screenshot.c:97:22: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean
'AV_PIX_FMT_RGB24'?
avctx->pix_fmt = PIX_FMT_RGB24;
^~~~~~~~~~~~~
AV_PIX_FMT_RGB24
/usr/local/include/libavutil/pixfmt.h:64:5: note: 'AV_PIX_FMT_RGB24' declared here
AV_PIX_FMT_RGB24, ///< packed RGB 8:8:8, 24bpp, RGBRGB...
^
screenshot.c:113:5: error: implicit declaration of function 'avcodec_get_frame_defaults' is invalid
in C99 [-Werror,-Wimplicit-function-declaration]
avcodec_get_frame_defaults(pic);
^
screenshot.c:118:16: error: implicit declaration of function 'avcodec_encode_video' is invalid in C99
[-Werror,-Wimplicit-function-declaration]
int size = avcodec_encode_video(avctx, outbuffer, outbuffer_size, pic);
^
PR: 214896
Reported by: jbeich
Reviewed by: jbeich, junovitch (mentor)
Approved by: jbeich, junovitch (mentor)
- Add missing LIB_DEPENDS and solve a stage-qa error
libogg is a required dependency. PORTREVISION was not bumped because libogg
is already a package dependency via audio/libvorbis.
from README:
Requirements summary:
For libtheora:
libogg 1.1 or newer.
====> Running Q/A tests (stage-qa)
Error: /usr/local/lib/libtheora.so.0.3.10 is linked to /usr/local/lib/libogg.so.0 from audio/libogg but it is not declared as a dependency
Warning: you need LIB_DEPENDS+=libogg.so:audio/libogg
Approved by: portmgr (blanket)
Zoneminder is an all-in-one GPL'd security and surveillance camera
solution. Fully web-based system for viewing and analyzing security
camera feeds. This version has H.264 support.
WWW: http://www.zoneminder.com/
PR: 214564
Submitted by: Ivan <bsd@abinet.ru>
- Add LICENSE (BSL)
- Add CPE data
- Remove STATIC option and always install the shared library;
no reason not to.
- Remove GCC option and use USES=compiler framework
- Add FULL_DEBUG option to address CVE-2016-7420 and add a warning if trying
to use it. It will allow the asserts to be enabled which could be a
security risk. The standard DEBUG option is now safe to use.
- Add SIMD option for i386 and amd64 - requires a recent clang or gcc
- Don't install the cryptest binary; it is really only used for regression
testing, so only build it for the TEST_TARGET. It is useless without the
data files anyways.
- Take maintainership
- Bump PORTREVISON on dependent ports due to shared library bump
PR: 215015
Reported by: <fcsk.aim@gmail.com>
MFH: 2016Q4
Security: eab68cff-bc0c-11e6-b2ca-001b3856973b
Import slightly modified version from upstream
https://git.reviewboard.kde.org/r/126992/
With this patch the port still works with ffmpeg-2.x.
PORTREVISION is being bumped for two reasons: the dependencies have been
changed (aka "make stage-qa happy") but also the ffmpeg3 patch causes the
library to change (it links against libavfilter at the very least)
PR: 214194
Submitted by: Matthew Rezny <matthew@reztek.cz>
Reported by: jbeich
Approved by: rakuco (mentor)
src/plumbing/transcoding.c:27:10: fatal error: 'libavutil/audioconvert.h' file not found
#include <libavutil/audioconvert.h>
^
src/plumbing/transcoding.c:1064:30: error: use of undeclared identifier 'PIX_FMT_YUV420P'; did you
mean 'AV_PIX_FMT_YUV420P'?
octx->pix_fmt = PIX_FMT_YUV420P;
^~~~~~~~~~~~~~~
AV_PIX_FMT_YUV420P
/usr/local/include/libavutil/pixfmt.h:62:5: note: 'AV_PIX_FMT_YUV420P' declared here
AV_PIX_FMT_YUV420P, ///< planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
^
src/plumbing/transcoding.c:1092:30: error: use of undeclared identifier 'PIX_FMT_YUV420P'; did you
mean 'AV_PIX_FMT_YUV420P'?
octx->pix_fmt = PIX_FMT_YUV420P;
^~~~~~~~~~~~~~~
AV_PIX_FMT_YUV420P
/usr/local/include/libavutil/pixfmt.h:62:5: note: 'AV_PIX_FMT_YUV420P' declared here
AV_PIX_FMT_YUV420P, ///< planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
^
src/plumbing/transcoding.c:1123:30: error: use of undeclared identifier 'PIX_FMT_YUV420P'; did you
mean 'AV_PIX_FMT_YUV420P'?
octx->pix_fmt = PIX_FMT_YUV420P;
^~~~~~~~~~~~~~~
AV_PIX_FMT_YUV420P
/usr/local/include/libavutil/pixfmt.h:62:5: note: 'AV_PIX_FMT_YUV420P' declared here
AV_PIX_FMT_YUV420P, ///< planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
^
build.freebsd/src/plumbing/transcoding.o: In function `transcoder_input':
src/plumbing/transcoding.c:(.text+0x559): undefined reference to `avcodec_alloc_frame'
src/plumbing/transcoding.c:(.text+0x56a): undefined reference to `avcodec_alloc_frame'
src/plumbing/transcoding.c:(.text+0x57f): undefined reference to `avcodec_get_frame_defaults'
src/plumbing/transcoding.c:(.text+0x58a): undefined reference to `avcodec_get_frame_defaults'
build.freebsd/src/plumbing/transcoding.o: In function `transcoder_stream_video':
src/plumbing/transcoding.c:(.text+0x1904): undefined reference to `avpicture_deinterlace'
cc: error: linker command failed with exit code 1 (use -v to see invocation)
PR: 214815
Reported by: antoine (via exp-run)
Obtained from: upstream
Approved by: decke (maintainer)
- Minor performance optimizations and cleanup (Thanks to Pavel Pimenov)
- Add PKGBUILD file for Arch Linux
- CMake improvements (Thanks to evpobr)
- Build scripts improvements
- Fix for Ubuntu 16.10
- Change lib name for Fedora and RHEL/CentOS to follow their guidelines
- Update Visual Studio project files (support of 32-bit CPU without SSE)
The only reason to use post-stage is because the port needs to do
"things" at a later time, like some plist manipulation.
While there, fold post-install in do-install targets when they are
defined.
PR: 214780
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
supported on FreeBSD 9.3, 10.1, and 10.2. "patch-src_dvbcut.cpp"
restores the code as it was in version 0.7.0. That patch shall be
removed from the port in 2017, when the affected FreeBSD versions
have reached EoL.
Approved by: antoine (implicit)
util.cpp:526:12: error: assigning to 'char *' from incompatible type 'const char *'
msgval = strrchr (msgid, '|');
^ ~~~~~~~~~~~~~~~~~~~~
util.cpp:539:9: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
char *msgval = strrchr(msgid, '|');
^ ~~~~~~~~~~~~~~~~~~~
PR: 214652
Approved by: portmgr blanket
As at the moment QT_BINDIR and QT_LIBDIR are 'bin' respectively 'lib' depending
on the Qt version these subs ended up at many wrong places in plists.
So only export it if QT_DIST is set.
PR: 210227
Reviewed by: mat, rakuco
Approved by: portmgr (mat), rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D8378
- Instead of excluding the specific packages added to DISTFILES (but only for
FreeBSD 9+), exclude all files with a '.nupkg' extension.
- Move the nuget-extract command to be before post-extract, to allow the port's
post-extract command to move packages around
audio/libgpod-sharp: add port for mono bindings for libgpod
- audio/libgpod: [2]
- USE_GNOME: add missing dependency
- Remove mono files from pkg-plist (now in audio/libgpod-sharp)
- Allow relevant variables to be overridden
- Fix MONO options
- Patch source to allow building with modern mono
- Avoid post-install target for slave ports.
devel/monodevelop: update to 4.6.2.7
- Update nuget package Fantomas to 2.4.0 (latest at time of monodevelop's
release).
- Downgrade nuget package FSharp.Compiler.CodeDom (per paket's specification)
- LICENSE: Add license of LGPL21
- LICENSE_FILE: Add license file from source
- PORTSCOUT: Avoid checking alpha releases (aka x.y.0.z releases)
games/openra: simplify post-extract [3]
- USES=mono:nuget allow overridding of NUGET_PACKAGEDIR
- Set NUGET_PACKAGEDIR to correct location, fix patching accordingly
lang/fsharp: update to 4.6.2.7
ChangeLog:
- Fix#639: Problems with F# scripts on Mono
- Fix FSharp.Compiler.Tools targets for .NET Core usage
- Fix FSharp.Compiler.Tools package dependencies
lang/mono: update to 4.6.2.7
Mono 4.6.2 is the 1st service release to the 4.6 series.
Changes:
- LICENSE: Add license of MIT
- LICENSE_FILE: Add license file from source
- PORTSCOUT: Avoid checking alpha releases (aka x.y.0.z releases)
Bug fixes:
- #44708 - "TrustFailure (The authentication or decryption has failed.) ...
Invalid certificate received from server." with "Error code: 0x5"
or "Error code: 0xffffffff800b010f" when attempting to access
HTTPS servers on ports other than 443
- #39832 - SIGSEGV when running roslyn
multimedia/banshee: bump port revision.
- Update missing port dependencies
- Convert to use option helpers
- OPTIONS: Add APPLEDEV (missing dependency added)
- LICENSE: Add MIT license
- LICENSE_FILE: Add license file from source
- PORTSCOUT: Skip alpha release (2.9.1)
x11-toolkits/gnome-sharp20: fix port dependencies
- Add missing dependencies
- Convert post-patch to shebangfix
- LICENSE: add LGPL21 license
- LICENSE_FILE: use license file from source
- MKAE_JOBS_UNSAFE: remove, does appear to work
x11-toolkits/gtk-sharp20: update to 2.12.42.
PR: 214680 [2]
PR: 214681
Suggested by: jbeich [1]
Submitted by: jbeich [3]
Approved by: avilla (maintainer; timeout) [2]
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler.
linux/miro-segmenter.c:81:92: error: use of
undeclared identifier 'CODEC_ID_MP3'; did you mean 'AV_CODEC_ID_MP3'?
...== 1 && input_codec_context->codec_id == CODEC_ID_MP3) || input_codec_context->codec_id == CO...
^~~~~~~~~~~~
AV_CODEC_ID_MP3
/usr/local/include/libavcodec/avcodec.h:517:5: note: 'AV_CODEC_ID_MP3' declared here
AV_CODEC_ID_MP3, ///< preferred ID for decoding MPEG audio layer 1, 2 or 3
^
linux/miro-segmenter.c:81:142: error: use of
undeclared identifier 'CODEC_ID_AC3'; did you mean 'AV_CODEC_ID_AC3'?
...== CODEC_ID_MP3) || input_codec_context->codec_id == CODEC_ID_AC3) {
^~~~~~~~~~~~
AV_CODEC_ID_AC3
/usr/local/include/libavcodec/avcodec.h:519:5: note: 'AV_CODEC_ID_AC3' declared here
AV_CODEC_ID_AC3,
^
PR: 214195
Approved by: portmgr blanket
src/media_object.cpp:435:41: error: use of undeclared identifier 'PIX_FMT_YUV444P'; did you mean 'AV_PIX_FMT_YUV444P'?
if (video_codec_ctx->pix_fmt == PIX_FMT_YUV444P
^~~~~~~~~~~~~~~
AV_PIX_FMT_YUV444P
/usr/local/include/libavutil/pixfmt.h:67:5: note: 'AV_PIX_FMT_YUV444P' declared here
AV_PIX_FMT_YUV444P, ///< planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
^
src/media_object.cpp:1943:92: error: use of undeclared identifier 'CODEC_ID_TEXT'; did you mean 'AV_CODEC_ID_TEXT'?
if (_ffmpeg->format_ctx->streams[_ffmpeg->subtitle_streams[i]]->codec->codec_id != CODEC_ID_TEXT)
^~~~~~~~~~~~~
AV_CODEC_ID_TEXT
/usr/local/include/libavcodec/avcodec.h:606:5: note: 'AV_CODEC_ID_TEXT' declared here
AV_CODEC_ID_TEXT, ///< raw UTF-8 text
^
src/media_object.cpp:935:45: error: use of undeclared identifier 'avcodec_alloc_frame'
_ffmpeg->video_frames.push_back(avcodec_alloc_frame());
^
src/media_object.cpp:937:18: error: ISO C++ forbids forward references to 'enum' types
enum PixelFormat frame_fmt = (_ffmpeg->video_frame_templates[j].layout == video_frame::bgra32
^
PR: 214192
Obtained from: upstream (based on)
Approved by: portmgr blanket
AtomicParsley.cpp:1450:9: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
char* orig_suffix = strrchr(originating_file, '.');
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
AtomicParsley.cpp:4467:10: error: assigning to 'char *' from incompatible type 'const char *'
suffix = strrchr(filePath, '.');
^ ~~~~~~~~~~~~~~~~~~~~~~
AtomicParsley.cpp:4483:9: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
char* file_name = strrchr(filePath, '/');
^ ~~~~~~~~~~~~~~~~~~~~~~
AtomicParsley.cpp:5009:11: error: cannot initialize a variable of type 'char *' with an rvalue of type 'const char *'
char* suffix = strrchr(m4aFile, '.');
^ ~~~~~~~~~~~~~~~~~~~~~
PR: 212343
Reported by: antoine (via exp-run)
aarch64 lacks binutils in base unlike armv6 while the buildbot only
copies ld(1) from ports under /usr/bin. Note, Clang 3.9 still doesn't
support the assembly used here.
KDE Frameworks is a collection of libraries and software frameworks by KDE
that serve as technological foundation for KDE Plasma 5 and KDE Applications
distributed under the GNU Lesser General Public License (LGPL) [1].
The work is based on what we have in the KDE testing repo [2].
This is the next big step in updating the KDE Desktop and its Applications
to anything less dusty.
With this change, `USES=kde:5` is now a valid option. Ports that need to depend
on KDE Framework can now set:
USES=kde:5
USE_KDE=<framework1> <framework2> ... <frameworkX>
For example: www/qupzilla-qt5 can depend on sysutils/kf5-kwallet via:
KWALLET_USE= KDE=wallet
I would like to thank Raphael and Adriaan for reviewing the ports in the testing
repo :)
[1] https://en.wikipedia.org/wiki/KDE_Frameworks
[2] http://src.mouf.net/area51/log/branches/plasma5
Reviewed by: rakuco, mat, groot_kde.org
Approved by: rakuco (maintainer)
Differential Revision: https://reviews.freebsd.org/D8329
maintained version 0.5.4 (or the already forked 0.6.2).
This version adds support for qt5 (port option, default remains at qt4) and
is claimed to be compatible with ffmpeg-3.x (not verified, yet).
PR: 214193
Reported by: jbeich (ffmpeg-3 exp-run)
In file included from libaegisub/ass/time.cpp:20:0:
libaegisub/include/libaegisub/format.h: In static member function 'static Out agi::format_detail::runtime_cast_helper<In, Out, <anonymous> >::cast(const In&)':
libaegisub/include/libaegisub/format.h:31:37: error: 'bad_cast' is not a member of 'std'
static Out cast(In const&) { throw std::bad_cast(); }
^
In file included from libaegisub/lua/script_reader.cpp:19:0:
libaegisub/include/libaegisub/file_mapping.h:37:3: error: 'unique_ptr' in namespace 'std' does not name a type
std::unique_ptr<boost::interprocess::mapped_region> region;
^
libaegisub/include/libaegisub/file_mapping.h:54:3: error: 'unique_ptr' in namespace 'std' does not name a type
std::unique_ptr<boost::interprocess::mapped_region> read_region;
^
libaegisub/include/libaegisub/file_mapping.h:56:3: error: 'unique_ptr' in namespace 'std' does not name a type
std::unique_ptr<boost::interprocess::mapped_region> write_region;
^
PR: 199601
- Drop maintainership
Release annoucement:
This release addresses various important security issues which were
identified by the debian maintainers.
There is also a fix for broken audio encoding with clips > 30 minutes long.
Note: in addition, for new installs the default LiVES working directory is
now "livesprojects" rather than "livestmp". The documentation will be
updated to reflect this.
Due to the security issues identified, all users are advised to upgrade,
especially if using LiVES on a multi-user system.
xbmc/cores/dvdplayer/DVDPlayerAudioResampler.cpp:77:12: error:
cannot initialize a variable of type 'float *' with an lvalue of type 'const float *'
float* outputptr = m_converterdata.data_in;
^ ~~~~~~~~~~~~~~~~~~~~~~~
Reported by: pkg-fallout
Pointy hat to: @bapt (and upstream)
Approved by: portmgr blanket
It turns out the following is true for ffvp9 on amd64:
WARNING: gcc 4.2 is outdated and may miscompile FFmpeg. Please use a newer compiler.
PR: 213706
Approved by: portmgr blanket
AVFrame.pkt_pts didn't exist in ffmpeg-4f7d2fe-2010-12-16 snapshot when
global_video_pkt_pts was added to py-ffmpeg. The code worked it around by
saving PTS in AVFrame.opaque just before avcodec_decode_video2() call. This
broke when r425471 removed our_get_buffer(). So, just use AVFrame.pkt_pts
directly now.
PR: 214247
Approved by: dbn (maintainer)
ffmpeg/_ffmpeg.c:8559:23: error: no member named 'get_buffer' in 'struct AVCodecContext'; did you mean 'get_buffer2'?
__pyx_v_codecCtx->get_buffer = __pyx_f_6ffmpeg_7_ffmpeg_our_get_buffer;
^~~~~~~~~~
get_buffer2
/usr/local/include/libavcodec/avcodec.h:2565:11: note: 'get_buffer2' declared here
int (*get_buffer2)(struct AVCodecContext *s, AVFrame *frame, int flags);
^
ffmpeg/_ffmpeg.c:8568:23: error: no member named 'release_buffer' in 'struct AVCodecContext'
__pyx_v_codecCtx->release_buffer = __pyx_f_6ffmpeg_7_ffmpeg_our_release_buffer;
~~~~~~~~~~~~~~~~ ^
PR: 214247
Approved by: dbn (maintainer)
In file included from bindings/php/pHash.cpp:17:
In file included from ./php_pHash.h:28:
In file included from /usr/local/include/php/main/php.h:35:
In file included from /usr/local/include/php/Zend/zend.h:36:
bindings/php/pHash.cpp:51:36: error:
unknown type name 'zend_rsrc_list_entry'
extern "C" void ph_video_hash_dtor(zend_rsrc_list_entry *rsrc TSRMLS_DC)
^
bindings/php/pHash.cpp:260:18: error: use of
undeclared identifier 'ZEND_REGISTER_RESOURCE'
return_res_id = ZEND_REGISTER_RESOURCE(return_value, return_res, le_ph_video_hash);
^
bindings/php/pHash.cpp:397:26: error:
unexpected type name 'ulong64': expected expression
ZEND_FETCH_RESOURCE(h1, ulong64 *, &h1_res, h1_resid, "ph_image_hash", le_ph_image_hash);
^
[...]
PR: 213213
Submitted by: Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
src/mgui/ffviewer.cpp:642:22: error: 'SWS_CPU_CAPS_MMX' was not declared in this scope
sws_flags |= SWS_CPU_CAPS_MMX|SWS_CPU_CAPS_MMX2;
^
src/mgui/ffviewer.cpp:642:39: error: 'SWS_CPU_CAPS_MMX2' was not declared in this scope
sws_flags |= SWS_CPU_CAPS_MMX|SWS_CPU_CAPS_MMX2;
^
src/mgui/ffviewer.cpp:650:9: error: 'PixelFormat' was not declared in this scope
PixelFormat dst_pf = PIX_FMT_BGR24; // PIX_FMT_RGB24;
^
src/mgui/ffviewer.cpp:650:21: error: expected ';' before 'dst_pf'
PixelFormat dst_pf = PIX_FMT_BGR24; // PIX_FMT_RGB24;
^
src/mgui/ffviewer.cpp:652:13: error: 'dst_pf' was not declared in this scope
dst_pf, sws_flags, 0, 0, 0);
^
src/mgui/ffviewer.cpp:657:45: error: 'avcodec_get_frame_defaults' was not declared in this scope
avcodec_get_frame_defaults(&rgbFrame); // не помешает
^
PR: 207547
Obtained from: upstream
videowrapper.cpp:107:40: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean
'AV_PIX_FMT_RGB24'?
pCodecCtx->height, PIX_FMT_RGB24, SWS_BICUBIC, NULL,
^~~~~~~~~~~~~
videowrapper.cpp:128:19: error: use of undeclared identifier 'avcodec_alloc_frame'
pFrameRGB=avcodec_alloc_frame();
^
PR: 207547
ASM=on is nop on many Tier2 and Tier3 architectures: arm + armeb, mips +
mipsel, ia64, sparc64. mips64 may be able to use MSA optimizations but the
ancient GCC in base doesn't support -msa flag and lang/gcc* are broken.
arm (aka armv4t) failed as:
You specified a pre-ARMv6 or Thumb-1 CPU in your CFLAGS.
If you really want to run on such a CPU, configure with --disable-asm.
mips (o32) failed as: [1]
You specified a pre-MSA CPU in your CFLAGS.
If you really want to run on such a CPU, configure with --disable-asm.
PR: 213443
Reported by: pkg-fallout [1]
Obtained from: PkgSrc
Approved by: portmgr blanket
Thanks to the upstream work of Marie Loise Nolden, we could get rid of a handful
of patches, as they have been properly upstreamed. The rest of the work is just
some minor plist changes.
I would like to thank Loise <nolden@kde.org> for the upstream work, and Adriaan
<groot@kde.org> for getting the update into shape.
[1] http://blog.qt.io/blog/2016/10/12/qt-5-6-2-released/
[2] http://wiki.qt.io/Qt_5.6.2_Change_Files
PR: 213530
Exp-run by: antoine
Submitted by: Adriaan de Groot <groot@kde.org>
Reviewed by: rakuco, mat, tcberner
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D8228
%%QT_BINDIR%% and %%QT_LIBDIR%% represent the relative location of the
Qt binaries and libraries respectively -- they are only 'bin' and 'lib'
by chance, and should not be used that way.
Approved by: portmgr (blanket), rakuco (mentor)
multicat is a 1 input/1 output application. Inputs and outputs can
be network streams (unicast and multicast), files, directories,
character devices or FIFOs. It is thought to be a multicast equivalent
of the popular netcat tool. Typical applications are recording live
transport streams, or playing out TS files without modification.
Also it is able to record a continuous stream into a directory,
rotate the files periodically, and make seamless extracts from it.
Multicat tries to rebuild the internal clock of the input stream;
but it wants to remain agnostic of what is transported, so in case
of files the said clock is stored to an auxiliary file (example.aux
accompanies example.ts) while recording. Other inputs are considered
"live", and the input clock is simply derived from the reception
time of the packets.
WWW: http://www.videolan.org/projects/multicat.html
See "Maintainer Reset" in
https://www.freebsd.org/portmgr/policies_contributors.html. makc's last commit
was in March 31st (r412218), and his ports have been timing out since at least
July (r418155).
I also emailed him 2 weeks ago and have received no response so far.
Mk/Uses/linux.mk changes:
- Add support for architecture neutral (noarch) distfiles.
- Add support for 64-bit only ports: set IGNORE on i386 and don't install
32-bit compat libraries on amd64.
Submitted by: Piotr Kubaj <pkubaj@anongoth.pl>
Differential Revision: https://reviews.freebsd.org/D7886
A lot of KDE Ports share MASTERSITES, LICENSE and so one, as they are
released as a bundle upstream, however, there was not really a clean
way to share this information.
Using these new categories, we can simplify the Makefiles for the diverse
KDE ports.
At the moment we support the virtual category
* kde-kde4
In the future, this will be extended to
* kde-frameworks
* kde-plasma
* kde-applications
PR: 213406
Differential Revision: https://reviews.freebsd.org/D7645
Exp-run by : antoine
Reviewed by: mat, rakuco
Approved by: portmgr (mat), rakuco (mentor)
No other downstream appends synthetic library version, and doing so
causes underlinking due to fragile build system (see below). Not to
mention being unable to swap out bundled libs from upstream builds.
$ cc -lplds4 -L/usr/local/lib
/usr/lib/crt1.o: In function `_start1':
crt1_c.c:(.text+0xa6): undefined reference to `main'
/usr/local/lib/libplds4.so: undefined reference to `pthread_set_name_np'
/usr/local/lib/libplds4.so: undefined reference to `pthread_create'
/usr/local/lib/libplds4.so: undefined reference to `pthread_condattr_init'
/usr/local/lib/libplds4.so: undefined reference to `pthread_setschedparam'
/usr/local/lib/libplds4.so: undefined reference to `pthread_getschedparam'
PR: 213144
Exp-run by: antoine
In r421340 there was an unfortunate mistake when realphabetizing the USE_QT5
components, and 'phonon4' became a 'phonon'.
Approved by: rakuco (mentor)
MFH: 2016Q4
To avoid confusion, the main port is to track the latest release.
Whether to rename includes/libraries as well making it possible to
install 2.x and 3.x side-by-side remains to be investigated.
PR: 210505 (for tracking)
Inspired by: PkgSrc
USES=localbase:ldflags can be used to set LDFLAGS. Normally LDFLAGS
appears too early on the command line causing some ports to link with
their own libraries in LOCALBASE (if installed) instead of WRKSRC.
Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as
possible after anything a port Makefile might set. Use _USES_POST
instead of .include in libedit.mk and libarchive.mk so things like
'USES=libedit localbase:ldflags' work correctly.
Fix some issues with LIBS in some ports.
Switch ports that don't support LIBS to localbase:ldflags.
PR: 212987
Exp-run by: antoine
Approved by: portmgr (antoine)