1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

404421 Commits

Author SHA1 Message Date
Hiroki Sato
9d87fff587 Add net/softethervpn, a cross-platform multi-protocol VPN software
under GPLv2.
2016-11-19 11:45:14 +00:00
Alexey Dokuchaev
fa0784d109 - Move license information from port description into LICENSE knobs
- Convert $arch-conditional BROKEN statement into BROKEN_$arch one
2016-11-19 11:39:40 +00:00
Guido Falsi
8a2e44afcd Convert to USES=pyqt.
PR:		214635
Submitted by:	tcberner
2016-11-19 11:33:05 +00:00
Tobias C. Berner
6fbe4ae215 Fix build of multimedia/kdenlive -- ambiguity of abs()
Approved by:	antoine
2016-11-19 11:30:13 +00:00
Dirk Meyer
d204a290b2 - fix build on FreeBSD-12 2016-11-19 10:42:31 +00:00
Dmitry Marakasov
7dac2ac5a1 - Add LICENSE_FILE
- Add NO_ARCH
- Switch to options helpers
2016-11-19 09:00:20 +00:00
Kurt Jaeger
218d2ed05f databases/cego: update 2.31.3 -> 2.31.4
- Fix some leaks in CegoXPorter regarding file handles and memory
  allocation ( improved exception handling )

Submitted by:	Bjoern Lemke <lemke@lemke-it.com>
2016-11-19 08:26:19 +00:00
Sunpoet Po-Chuan Hsieh
e0f49a2386 - Add IPV6 option
PR:		213898
Reported by:	mi
2016-11-19 08:03:00 +00:00
Sunpoet Po-Chuan Hsieh
c1677dd8d1 - Fix geos::geom::CoordinateArraySequenceFactory assertion
- Convert to new test framework
- Bump PORTREVISION for package change

PR:		213173
Submitted by:	Rainer Hurling <rhurlin@gwdg.de>
2016-11-19 08:02:56 +00:00
Olivier Duchateau
0909e1e4d2 Update to 1.19.1 2016-11-19 06:14:03 +00:00
Hiroki Sato
2fbe2585b4 Update to 0.3.14. TrouSerS has been under 3-clause BSDL since 0.3.11. 2016-11-19 03:22:15 +00:00
Jan Beich
f58430cc9c multimedia/miro: unbreak build with ffmpeg 3.x
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
2016-11-18 23:39:38 +00:00
Jan Beich
c9a8f6c892 multimedia/bino: unbreak build with ffmpeg 3.x
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
2016-11-18 22:01:35 +00:00
Jan Beich
c2d98a262a graphics/php5-ffmpeg: unbreak build with ffmpeg 3.x
ffmpeg_movie.c:975:41: error:
      use of undeclared identifier 'CODEC_ID_MPEG2TS'; did you mean 'AV_CODEC_ID_MPEG2TS'?
    } else if (decoder_ctx->codec_id == CODEC_ID_MPEG2TS) {
                                        ^~~~~~~~~~~~~~~~
                                        AV_CODEC_ID_MPEG2TS
/usr/local/include/libavcodec/avcodec.h:647:5: note: 'AV_CODEC_ID_MPEG2TS' declared here
    AV_CODEC_ID_MPEG2TS = 0x20000, /**< _FAKE_ codec to indicate a raw MPEG-2 TS
    ^
ffmpeg_frame.c:502:34: error:
      use of undeclared identifier 'PIX_FMT_YUV420P'; did you mean 'AV_PIX_FMT_YUV420P'?
    _php_convert_frame(ff_frame, PIX_FMT_YUV420P);
                                 ^~~~~~~~~~~~~~~
ffmpeg_frame.c:514:50: error:
      use of undeclared identifier 'PIX_FMT_YUV420P'; did you mean 'AV_PIX_FMT_YUV420P'?
    avpicture_alloc((AVPicture*)resampled_frame, 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)
    ^

PR:		214191
Approved by:	portmgr blanket
2016-11-18 22:01:15 +00:00
Jan Beich
7f3933d17c emulators/visualboyadvance-m: unbreak build with ffmpeg 3.x
In file included from src/common/ffmpeg.cpp:62:
src/common/ffmpeg.h:70:5: error: unknown type name 'PixelFormat'; did you mean 'AVPixelFormat'?
    priv_PixelFormat pixfmt;
    ^~~~~~~~~~~~~~~~
    AVPixelFormat
src/common/ffmpeg.cpp:61:26: note: expanded from macro 'priv_PixelFormat'
 #define priv_PixelFormat PixelFormat
                          ^
/usr/local/include/libavutil/pixfmt.h:60:6: note: 'AVPixelFormat' declared here
enum AVPixelFormat {
     ^
src/common/ffmpeg.cpp:81:11: error: use of undeclared identifier 'avcodec_alloc_frame'
    pic = avcodec_alloc_frame();
          ^
src/common/ffmpeg.cpp:92:28: error: use of undeclared identifier 'CODEC_ID_NONE'; did you mean 'AV_CODEC_ID_NONE'?
    if(fmt->audio_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,
    ^
src/common/ffmpeg.cpp:163:11: error: use of undeclared identifier 'PIX_FMT_RGB24'; did you mean 'AV_PIX_FMT_RGB24'?
        pixfmt = 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...
    ^
src/common/ffmpeg.cpp:416:13: error: use of undeclared identifier 'avcodec_encode_video'; did you mean 'avcodec_encode_video2'?
        pkt.size = avcodec_encode_video(ctx, video_buf, VIDEO_BUF_LEN, f);
                   ^~~~~~~~~~~~~~~~~~~~
                   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,
    ^
src/common/ffmpeg.cpp:468:13: error: use of undeclared identifier 'avcodec_encode_audio'; did you mean 'avcodec_encode_audio2'?
        pkt.size = avcodec_encode_audio(ctx, audio_buf, frame_len,
                   ^~~~~~~~~~~~~~~~~~~~
                   avcodec_encode_audio2
/usr/local/include/libavcodec/avcodec.h:5283:5: note: 'avcodec_encode_audio2' declared here
int avcodec_encode_audio2(AVCodecContext *avctx, AVPacket *avpkt,
    ^

PR:		214190
Obtained from:	upstream
Approved by:	maintainer timeout (2 weeks)
2016-11-18 22:00:57 +00:00
Jan Beich
70f518b2a2 emulators/kcemu: unbreak build with ffmpeg 3.x
ffmpeg.cc:79:29: error: use of undeclared identifier 'PIX_FMT_YUV420P'; did you mean 'AV_PIX_FMT_YUV420P'?
  _stream->codec->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)
    ^
ffmpeg.cc💯12: error: use of undeclared identifier 'avcodec_alloc_frame'
  _frame = avcodec_alloc_frame();
           ^
ffmpeg.cc:159:18: error: use of undeclared identifier 'avcodec_encode_video'; did you mean 'avcodec_encode_video2'?
  int out_size = avcodec_encode_video(_stream->codec, _buf, _bufsize, _frame);
                 ^~~~~~~~~~~~~~~~~~~~
                 avcodec_encode_video2
/usr/local/include/libavcodec/avcodec.h:5261:5: note: 'avcodec_encode_video2' declared here
int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
    ^
ffmpeg.cc:159:55: error: cannot initialize a parameter of type 'AVPacket *' with an lvalue of type 'byte_t *' (aka 'unsigned char *')
  int out_size = avcodec_encode_video(_stream->codec, _buf, _bufsize, _frame);
                                                      ^~~~
/usr/local/include/libavcodec/avcodec.h:5261:60: note: passing argument to parameter 'avpkt' here
int avcodec_encode_video2(AVCodecContext *avctx, AVPacket *avpkt,
                                                           ^

PR:		214188
Approved by:	maintainer timeout (2 weeks)
2016-11-18 22:00:36 +00:00
Raphael Kubo da Costa
bb6a8c7aa5 Remove an extra '/' from the plist to fix `make check-plist'.
Not bumping PORTREVISION because the generated package does not change.

Reported by:	tcberner
2016-11-18 21:46:16 +00:00
Thierry Thomas
5823b6e2f9 Upgrade to 4.1. 2016-11-18 21:41:10 +00:00
Thierry Thomas
96a57849f0 Upgrade to v.179. 2016-11-18 20:58:05 +00:00
Thierry Thomas
d754217e32 - Simplify Makefile with USE=qmake
- Since I'm there fix USE_GL.

PR:		214627
Submitted by:	tcberner
2016-11-18 20:57:51 +00:00
Kris Moore
24f970c956 - Fix issue with pkg-plist and missing pickle
PR: 214634
Reported by: rakuco@
2016-11-18 20:46:42 +00:00
Pawel Pekala
4ced60a7e4 - Add missing dri dependency
- Convert sdl_ttf to RUN_DEPENDS hack, USE_LINUX=sdlttf seems to be gone
- Use brandelf(1) on installed libraries also, game runs on 12-current but
  on FreeBSD 10.3 execution fails with:

./libs/Dwarf_Fortress: error while loading shared libraries:
/usr/local/libexec/dwarffortress/libgraphics.so: ELF file OS ABI invalid
2016-11-18 20:00:44 +00:00
John Marino
a8a293db40 math/scilab: Document ncurses requirement
Approved by:	ncurses blanket
2016-11-18 19:49:07 +00:00
Lev A. Serebryakov
f0d2892f68 Update to latest release from TI/SOMNIUM 2016-11-18 19:46:20 +00:00
Kurt Jaeger
130b5adb71 www/node4: update 4.6.1 -> 4.6.2
PR:		214386
Changes:	https://nodejs.org/en/blog/release/v4.6.2/
Submitted by:	Bradley T. Hughes <bradleythughes@fastmail.fm> (maintainer)
2016-11-18 19:33:37 +00:00
Jason E. Hale
2f47a623ed Update to 1.2.0
Add NO_ARCH
2016-11-18 19:08:16 +00:00
David Naylor
8f19e8b399 devel/eric6: update to 6.1.11
- remove i18n files from devel/eric6 (duplicate of the specific ports)
 - add support for Python 3
2016-11-18 18:49:55 +00:00
Guido Falsi
039ef6a7eb Update calibre to 2.72.0. 2016-11-18 18:38:03 +00:00
John Marino
7399fb7675 ftp/ncftp3: Skip faulty ncurses.h header check
The ncurses.h header configure check doesn't use cflags apparently thus
returning a false negative on the presence of the ncurses headers (it
picks up base headers if they exist instead).  Just cache the test result
as "yes" to fix the build for ports-based ncurses.
2016-11-18 17:56:16 +00:00
Jason E. Hale
0c84f4c3ab Update to 0.1.25 2016-11-18 17:10:11 +00:00
John Marino
167cd7d4ed comms/uhd: Document ncurses requirement
Approved by:	ncurses blanket
2016-11-18 15:58:32 +00:00
Veniamin Gvozdikov
5f87e4365b - Update to 3.16.2.1
- Fix unsupported major.minor version 52.0

PR:		ports/213839
Submitted by:	olevole@olevole.ru
Approved by:	Eugene Mychlo <myc@barev.net> (maintainer)
2016-11-18 15:47:06 +00:00
John Marino
f07667b308 security/pinentry-gnome3: Document ncurses requirement
Approved by:	ncurses blanket
2016-11-18 15:39:14 +00:00
Ganael LAPLANCHE
cf9c1a1c52 Update to 4.7.4 2016-11-18 15:33:26 +00:00
Jason E. Hale
6b60b57cbd Update to 2.5.2
Note: This release uses Qt5 now instead of Qt4
2016-11-18 15:22:22 +00:00
John Marino
6cf07a9acc www/varnish4: Document ncurses requirement
Approved by:	ncurses blanket
2016-11-18 15:18:04 +00:00
Guido Falsi
9df27d93a1 Update ocaml-pomap to 3.0.6.
PR:		213914
Submitted by:	Danilo G. Baio <dbaio@bsd.com.br>
2016-11-18 14:23:32 +00:00
Steve Wills
ec21799df2 lang/ruby22: update to 2.2.6 2016-11-18 13:52:30 +00:00
Danilo Egea Gondolfo
aae8d91365 - New port: net/openmpi2 2016-11-18 13:15:58 +00:00
Danilo Egea Gondolfo
d1d4a17ba5 - Update to 7.500.2 2016-11-18 12:42:43 +00:00
Jason E. Hale
b85d74b144 Update to 1.6.1
Update WWW
2016-11-18 11:12:40 +00:00
Veniamin Gvozdikov
c38f7f2612 - Update to 2.3 2016-11-18 10:49:13 +00:00
Dmitry Marakasov
e1b6c9a4ab - Bring back i386 distinfo bits list in the previous commit, fixing build on i386
- Pointyhat to:	kmoore

Approved by:	portmgr blanket
2016-11-18 09:55:35 +00:00
Dmitry Marakasov
214eec7515 - Add LICENSE
- Add LICENSE_FILE
- Cosmetic fixes
2016-11-18 09:08:12 +00:00
Dmitry Marakasov
0037594391 - Add LICENSE_FILE
- Switch to options helpers
2016-11-18 09:00:19 +00:00
Dmitry Marakasov
44c1dc73a2 Clean up dead sourceforge mirrors
Approved by:	portmgr blanket
2016-11-18 08:51:14 +00:00
Dmitry Marakasov
191b7341ae - Update to 1.2
- Add LICENSE
2016-11-18 08:47:05 +00:00
Dmitry Marakasov
1b3482df0c - Update to 5.5.2.3
- Regenerate the patches
- Add LICENSE
- While here, fix shared lib installation

PR:		212394
Submitted by:	pfg
Approved by:	maintainer timeout (mayo@oyam.ca, 2 months)
2016-11-18 08:46:14 +00:00
Pietro Cerutti
69a67c52eb www/mod_rivet: fix PLIST
PR:		214363
Submitted by:	jeff.lawson@flightaware.com (maintainer)
2016-11-18 08:45:07 +00:00
Greg Lewis
ce1a12902a . Update to 1.18.15. 2016-11-18 06:30:48 +00:00