1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
Commit Graph

403410 Commits

Author SHA1 Message Date
Tijl Coosemans
46e311de01 Fix build for people with DEVELOPER=yes.
PR:		214201
2016-11-04 10:01:35 +00:00
Dmitry Marakasov
256c2950a4 - Verbosify build
- Switch to options helpers

Approved by:	portmgr blanket
2016-11-04 09:04:21 +00:00
Jan Beich
45a3fccd24 x11-toolkits/nucleo: unbreak build with ffmpeg 3.x
In file included from nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:14:
nucleo/plugins/ffmpeg/ffmpegImageSink.H:39:10: error: ISO C++ forbids forward references to
      'enum' types
    enum PixelFormat srcEncoding ;
         ^
nucleo/plugins/ffmpeg/ffmpegImageSink.H:39:22: error: field has incomplete type
      'enum PixelFormat'
    enum PixelFormat srcEncoding ;
                     ^
nucleo/plugins/ffmpeg/ffmpegImageSink.H:39:10: note: forward declaration of
      'nucleo::PixelFormat'
    enum PixelFormat srcEncoding ;
         ^
nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:131:44: error: use of undeclared identifier 'CODEC_ID_NONE'; did you mean
      'AV_CODEC_ID_NONE'?
    else if (output_format->video_codec == CODEC_ID_NONE) {
                                           ^~~~~~~~~~~~~
                                           AV_CODEC_ID_NONE
/usr/local/include/libavcodec/avcodec.h:192:5: note: 'AV_CODEC_ID_NONE' declared here
    AV_CODEC_ID_NONE,
    ^
nucleo/plugins/ffmpeg/ffmpegImageSource.cxx:132:8: error: use of undeclared identifier 'PIX_FMT_GRAY8'; did you mean
      'AV_PIX_FMT_GRAY8'?
         case PIX_FMT_GRAY8:
              ^~~~~~~~~~~~~
              AV_PIX_FMT_GRAY8
/usr/local/include/libavutil/pixfmt.h:70:5: note: 'AV_PIX_FMT_GRAY8' declared here
    AV_PIX_FMT_GRAY8,     ///<        Y        ,  8bpp
    ^
nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:265:34: error: use of undeclared identifier 'PIX_FMT_GRAY8'; did you mean
      'AV_PIX_FMT_GRAY8'?
    case Image::L: srcEncoding = PIX_FMT_GRAY8 ; break ;
                                 ^~~~~~~~~~~~~
                                 AV_PIX_FMT_GRAY8
/usr/local/include/libavutil/pixfmt.h:70:5: note: 'AV_PIX_FMT_GRAY8' declared here
    AV_PIX_FMT_GRAY8,     ///<        Y        ,  8bpp
    ^
nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:266:42: error: use of undeclared identifier 'PIX_FMT_YUV420P'; did you mean
      'AV_PIX_FMT_YUV420P'?
    case Image::YpCbCr420: srcEncoding = PIX_FMT_YUV420P ; break ;
                                         ^~~~~~~~~~~~~~~
                                         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)
    ^
nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:267:28: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean
      'AV_PIX_FMT_RGB24'?
    default: srcEncoding = PIX_FMT_RGB24 ; break ;
                           ^~~~~~~~~~~~~
                           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...
    ^
nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:270:5: error: use of undeclared identifier 'avcodec_get_frame_defaults'
    avcodec_get_frame_defaults(&srcPic) ;
    ^
nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:274:3: error: use of undeclared identifier 'avcodec_get_frame_defaults'
         avcodec_get_frame_defaults(&convPic) ;
         ^
nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:303:22: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean
      'AV_PIX_FMT_RGB24'?
    if (srcEncoding==PIX_FMT_RGB24) convertImage(img, Image::RGB) ;
                     ^~~~~~~~~~~~~
                     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...
    ^
nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:329:20: error: use of undeclared identifier 'avcodec_encode_video'; did you mean
      'avcodec_encode_video2'?
    int out_size = avcodec_encode_video(cctx, video_outbuf, video_outbuf_size, picture) ;
                   ^~~~~~~~~~~~~~~~~~~~
                   avcodec_encode_video2
/usr/local/include/libavcodec/avcodec.h:5322:5: note: 'avcodec_encode_video2' declared here
int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
    ^
nucleo/plugins/ffmpeg/ffmpegImageSink.cxx:329:47: error: cannot initialize a parameter of type 'AVPacket *' with an lvalue
      of type 'uint8_t *' (aka 'unsigned char *')
    int out_size = avcodec_encode_video(cctx, video_outbuf, video_outbuf_size, picture) ;
                                              ^~~~~~~~~~~~
/usr/local/include/libavcodec/avcodec.h:5322:60: note: passing argument to parameter 'avpkt' here
int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
                                                           ^

PR:		207547
2016-11-04 08:48:49 +00:00
Matthias Andree
1f2fa72e9e Upgrade to upstream bugfix release 2.3.13.
ChangeLog:
<https://community.openvpn.net/openvpn/wiki/ChangesInOpenvpn23#OpenVPN2.3.13>
2016-11-04 08:42:23 +00:00
Baptiste Daroussin
61a4bde434 Fix modes for /compat/linux/proc
When linprocfs is mounted the mode set to /compat/linux/proc is set to 555
while the package said 755 meaning pkg will try to change it 755 and fail
preventing upgrade or installation of the package because linprocfs does not
support changing attributes.

Enforce it to 555 to prevent that situation
2016-11-04 08:02:48 +00:00
Jan Beich
db0a8503dc www/py-flexget: update to 2.5.12
Changes:	https://github.com/Flexget/Flexget/compare/2.5.8...2.5.12
2016-11-04 07:59:30 +00:00
Jan Beich
f4e1f3b974 Pass maintainership of PEAR ports to the submitter
PR:		214156
Submitted by:	Jochen Neumeister <joneum@bsdproject.de>
2016-11-04 07:50:45 +00:00
Tom Judge
16631a2ca6 New port for logstash5
Logstash is an open source, server-side data processing pipeline that ingests
data from a multitude of sources simultaneously, transforms it, and then sends
it to your favorite “stash.”

WWW: https://www.elastic.co/products/logstash
2016-11-04 07:38:09 +00:00
Jan Beich
a959457ec0 audio/libgroove: unbreak build with ffmpeg 3.x
groove/encoder.c:84:19: error:
      'avcodec_encode_audio2' is deprecated [-Werror,-Wdeprecated-declarations]
    int errcode = avcodec_encode_audio2(e->stream->codec, &e->pkt, frame, &got_packet);
                  ^
/usr/local/include/libavcodec/avcodec.h:5283:5: note: 'avcodec_encode_audio2' has been explicitly
      marked deprecated here
int avcodec_encode_audio2(AVCodecContext *avctx, AVPacket *avpkt,
    ^
groove/encoder.c:84:52: error: 'codec'
      is deprecated [-Werror,-Wdeprecated-declarations]
    int errcode = avcodec_encode_audio2(e->stream->codec, &e->pkt, frame, &got_packet);
                                                   ^
/usr/local/include/libavformat/avformat.h:893:21: note: 'codec' has been explicitly marked deprecated
      here
    AVCodecContext *codec;
                    ^
groove/encoder.c:94:5: error:
      'av_free_packet' is deprecated [-Werror,-Wdeprecated-declarations]
    av_free_packet(&e->pkt);
    ^
/usr/local/include/libavcodec/avcodec.h:4472:6: note: 'av_free_packet' has been explicitly marked
      deprecated here
void av_free_packet(AVPacket *pkt);
     ^
groove/encoder.c:101:34: error:
      'codec' is deprecated [-Werror,-Wdeprecated-declarations]
        avcodec_close(e->stream->codec);
                                 ^
/usr/local/include/libavformat/avformat.h:893:21: note: 'codec' has been explicitly marked deprecated
      here
    AVCodecContext *codec;
                    ^
groove/encoder.c:134:44: error:
      'codec' is deprecated [-Werror,-Wdeprecated-declarations]
    AVCodecContext *codec_ctx = e->stream->codec;
                                           ^
/usr/local/include/libavformat/avformat.h:893:21: note: 'codec' has been explicitly marked deprecated
      here
    AVCodecContext *codec;
                    ^
groove/encoder.c:148:16: error:
      'codec' is deprecated [-Werror,-Wdeprecated-declarations]
    e->stream->codec = codec_ctx;
               ^
/usr/local/include/libavformat/avformat.h:893:21: note: 'codec' has been explicitly marked deprecated
      here
    AVCodecContext *codec;
                    ^
groove/encoder.c:620:24: error:
      'codec' is deprecated [-Werror,-Wdeprecated-declarations]
        0 : e->stream->codec->frame_size;
                       ^
/usr/local/include/libavformat/avformat.h:893:21: note: 'codec' has been explicitly marked deprecated
      here
    AVCodecContext *codec;
                    ^
7 errors generated.

PR:		207547
2016-11-04 07:37:48 +00:00
Tom Judge
a20f3d575e New port for Kibana 5.0 X-Pack plugins.
X-Pack is an Elastic Stack extension that bundles security, alerting,
monitoring, reporting, and graph capabilities into one easy-to-install package.
While the X-Pack components are designed to work together seamlessly, you can
easily enable or disable the features you want to use.

WWW: https://www.elastic.co/guide/en/x-pack/current/xpack-introduction.html
2016-11-04 07:33:38 +00:00
Tom Judge
795b179735 New port for elasticsearch x-pack plugins.
X-Pack is an Elastic Stack extension that bundles security, alerting,
monitoring, reporting, and graph capabilities into one easy-to-install package.
While the X-Pack components are designed to work together seamlessly, you can
easily enable or disable the features you want to use.

WWW: https://www.elastic.co/guide/en/x-pack/current/xpack-introduction.html
2016-11-04 07:32:20 +00:00
Tom Judge
d0eb55c595 Add Kibana 5.0.0 2016-11-04 07:30:26 +00:00
Tom Judge
53cb4c7f9e Add Elasticsearch 5.0.0. 2016-11-04 07:28:35 +00:00
Jan Beich
d5f961271e multimedia/2mandvd: unbreak build with ffmpeg 3.x
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
2016-11-04 07:21:57 +00:00
Jan Beich
9aa36d40ab comms/dabstick-radio: unbreak build with ffmpeg 3.x
backend/mp2processor-ffmpeg.cpp:49:33: error: use of undeclared identifier 'CODEC_ID_MP1'; did you
      mean 'AV_CODEC_ID_MP1'?
        codec           = avcodec_find_decoder (CODEC_ID_MP1);
                                                ^~~~~~~~~~~~
In file included from backend/mp2processor.cpp:7:
backend/mp2processor-ffmpeg.cpp:66:18: error: use of undeclared identifier 'avcodec_alloc_frame'
        decoded_frame   = avcodec_alloc_frame ();
                          ^
backend/mp2processor-ffmpeg.cpp:107:2: error: use of undeclared identifier
      'avcodec_get_frame_defaults'
        avcodec_get_frame_defaults (decoded_frame);
        ^

PR:		207547
2016-11-04 07:05:51 +00:00
Olivier Duchateau
f785e5c8e6 Tell to PORTSCOUT to monitor only 4.12.x releases. Others (>= 4.13) require
devel Xfce core components
2016-11-04 05:54:20 +00:00
Jan Beich
27cd3f2b78 multimedia/pHash: unbreak build with ffmpeg 3.x
=======================<phase: configure      >============================
  [...]
  *** Configuring video Hash ***

  checking whether FFmpeg is present... checking for avcodec_alloc_frame in -lavcodec... no
  configure: error:

  *** libavcodec not found.

PR:		214178
Approved by:	Naram Qashat <cyberbotx@cyberbotx.com> (maintainer)
MFH:		2016Q4
2016-11-04 04:48:11 +00:00
Xin LI
365cfba9a3 Update to 1.4.6.
Reset maintainer.
2016-11-04 03:39:42 +00:00
Wen Heping
94026d3384 - Reset maintainer to perl@
PR:		214180
Submitted by:	svysh.fbsd@gmail.com(previous maintainer)
2016-11-04 02:46:55 +00:00
Mark Linimon
5c98805da2 OSVERSION needs the pre/post.mk dance.
Reported by:	portsmon
2016-11-04 01:32:36 +00:00
Jan Beich
08cb68f7f3 games/openra: update GeoLite2 to November snapshot
fetch: https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz: size mismatch: expected 1302893, actual 1298653

MFH:		2016Q4 (blanket)
2016-11-04 00:40:15 +00:00
Jan Beich
c77f6990ca www/firefox: unbreak build with DEBUG=on after r425099
Traceback (most recent call last):
  File "configure.py", line 94, in <module>
    sys.exit(main(sys.argv))
  File "configure.py", line 22, in main
    sandbox.run(os.path.join(os.path.dirname(__file__), 'moz.configure'))
  File "python/mozbuild/mozbuild/configure/__init__.py", line 241, in run
    self._value_for(option)
  File "python/mozbuild/mozbuild/configure/__init__.py", line 305, in _value_for
    return self._value_for_option(obj)
  File "python/mozbuild/mozbuild/util.py", line 924, in method_call
    cache[args] = self.func(instance, *args)
  File "python/mozbuild/mozbuild/configure/__init__.py", line 370, in _value_for_option
    % (e.arg, reason, e.old_arg, e.old_origin))
mozbuild.configure.options.InvalidOptionError: '--enable-debug-symbols' implied by '--enable-debug' conflicts with '--disable-debug-symbols' from the mozconfig
*** Fix above errors and then restart with\
               "gmake -f client.mk build"

MFH:		2016Q4 (blanket)
2016-11-04 00:29:00 +00:00
Matthias Andree
c643da1f1b Force pthreads mutexes on 11+ and aarch64/ARMV6
This currently leaves ARMv6 and aarch64 on FreeBSD 9.x and 10.x out in
the rain because these will still autoconfigure to only permit private
mutexes.

PR:		213167
Submitted by:	jbeich (IRC)
2016-11-04 00:09:51 +00:00
Gerald Pfeifer
9201343d79 Update to the 20161101 snapshot of GCC 5.4.1. 2016-11-03 23:58:33 +00:00
Kurt Jaeger
7161944a9a devel/p5-Coro: add patch to work with perl 5.24 and up
- Patch from debian as described in
  https://rt.cpan.org/Public/Bug/Display.html?id=114708

PR:		214168
Reported by:	tom
Approved by:	mat
2016-11-03 22:58:27 +00:00
Matthias Andree
0b599c99f8 Update to latest snapshot (week 43)
PR:		213982
Submitted by:	ecrist@secure-computing.net (maintainer)
2016-11-03 22:32:26 +00:00
Baptiste Daroussin
e39c5c4efc Update to 1.9.3
- Fix file descriptor leak during rc script execution
- Fix setting attributes on directories
- Fix locking on NFS
- Allow pkg annodate -S to run as a non priviledge user
- Extend the audit periodic script to report about expiration/deprecation
2016-11-03 22:20:08 +00:00
Tijl Coosemans
22758f2672 Remove NVIDIA option from Linux ports now that the nvidia-driver can be
installed later.
2016-11-03 21:47:46 +00:00
Rene Ladan
1b101d5766 Fix version number in last entry 2016-11-03 20:34:34 +00:00
Rene Ladan
35730e217d Document new vulnerability in www/chromium < 54.0.2840.90
Obtained from:	https://googlechromereleases.blogspot.nl/2016/11/stable-channel-update-for-desktop.html
2016-11-03 20:33:43 +00:00
Tijl Coosemans
decb05eb19 Add missing dependency. 2016-11-03 20:20:21 +00:00
Tijl Coosemans
50a574ae1d Allow linux-*-dri and nvidia-driver to coexist. 2016-11-03 19:46:18 +00:00
Boris Samorodov
69ef63a563 science/sigrok-firmware-fx2lafw: Update to version 0.1.4. 2016-11-03 18:30:42 +00:00
John Marino
7daa40354f ports-mgmt/synth: Republish v1.64 as v1.64a
I forgot the internally increment the version number so it was still
showing v1.63.  The version fix is the only difference from v1.64.
2016-11-03 18:17:05 +00:00
John Marino
f6153f134c cad/ngspice_rework: configure xspice unconditionally
There was confusion about xspice option.  The "x" stands for "extended",
not x11, and it should always be enabled.  Adjust accordingly.

PR:		212357
2016-11-03 18:06:34 +00:00
John Marino
81aa8f5195 ports-mgmt/synth: Upgrade version 1.63 => 1.64
Change in hook behavior:

  Now the initial building of pkg(8) triggers a success or failure hook
  after building.  Before ports-mgmt/pkg was the only port that could
  never trigger these hooks.  The "bulk run start" hook is triggered
  afterwords as pkg(8) is a prerequisite to preparing the bulk run.

Fix potential bad unmount of /usr/src

  In the case where /usr/src exists, but the profiles uses a system root
  that is not "/" and doesn't have an "usr/src" subdirectory, an error
  would be emitted as the unmount of the non-existant mount failed.  This
  uncommon use case has been fixed.

Curses display builder "Elapsed" label changed to "Duration"

  This matches the format of the web-based report

DragonFly only: Support File(1) v2.0 version parsing

  The output of file(1) version on DragonFly will change with version 2.0.
  For example, what is now version 4.0.702 will be displayed as 4.7.2 on
  newer versions of file(1).  Moreover, the parsing for DragonFly 4.10+
  would not have worked.  Now both versions are supports and the double-
  digit minor versions are properly handled as well.
2016-11-03 18:00:50 +00:00
John Marino
9375d86385 cad/ngspice_rework: Enable X support by default (introduce X11 option)
Ngspice built inside a package builder will not have x11 support which
results in errors such as "Can't open viewport in graphics." when
trying to plot.

This change adds the X11 option which is on by default.

PR:		212357
Submitted by:	Michael Neumann
Approved by:	Kevin Zheng (maintainer)
2016-11-03 17:38:51 +00:00
Torsten Zuehlsdorff
b16be57761 www/gitlab: Update from 8.10.12 to 8.10.13
Changes: https://github.com/gitlabhq/gitlabhq/blob/v8.10.13/CHANGELOG

Approved by: junovitch (mentor, implicit)
2016-11-03 16:59:23 +00:00
Mark Linimon
c170516352 Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:38:16 +00:00
Mark Linimon
0b77af52ee Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:37:36 +00:00
Mark Linimon
05cc5cbda4 Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:36:25 +00:00
Mark Linimon
1d3d933855 Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:35:14 +00:00
Mark Linimon
170f09c5df Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:34:21 +00:00
Mark Linimon
e1f183e28b Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:33:34 +00:00
Mark Linimon
74d0a0ba36 Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:33:00 +00:00
Mark Linimon
829a6b36ad Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:31:15 +00:00
Mark Linimon
2cce37e88d Now seems to build on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:29:22 +00:00
Mark Linimon
eb0a31a160 Now build on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:27:03 +00:00
Mark Linimon
0be24564dd Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:25:14 +00:00
Mark Linimon
cc4090b9ad Now builds on sparc64.
Approved by:	portmgr (tier-2 blanket)
2016-11-03 16:24:28 +00:00