aboutsummaryrefslogtreecommitdiff
path: root/x11-toolkits/nucleo
Commit message (Collapse)AuthorAgeFilesLines
* Revision bump of all ports with USE_GL after consolidation of mesa-libsMatthew Rezny2017-05-231-1/+1
| | | | | | | | Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845 Notes: svn path=/head/; revision=441503
* - Add LICENSE_FILEDmitry Marakasov2017-04-181-7/+6
| | | | | | | | | - Add missing expat and gl depends - Fix shebangs - Switch to USES=localbase Notes: svn path=/head/; revision=438774
* multimedia/ffmpeg: update to 3.2.2Jan Beich2016-12-111-1/+1
| | | | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.2.2:/Changelog PR: 207547 Submitted by: riggs, ebirth@b0ss.net (libressl fix) Exp-run by: antoine (3 tries) Notes: svn path=/head/; revision=428352
* x11-toolkits/nucleo: oops, restore size check after r425305Jan Beich2016-11-042-2/+2
| | | | | | | PR: 207547 Notes: svn path=/head/; revision=425324
* x11-toolkits/nucleo: unbreak build with ffmpeg 3.xJan Beich2016-11-044-13/+134
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=425305
* - update libgd to 2.2.2Dirk Meyer2016-07-201-1/+1
| | | | | | | | | | | | | | - new MASTER_SITES - add security patch PR: 210913 Submitted by: Piotr Kubaj MFH: 2016Q3 Security: CVE-2015-8874 Security: CVE-2016-3074 Security: http://www.openwall.com/lists/oss-security/2016/07/12/4 Notes: svn path=/head/; revision=418829
* Remove ${PORTSDIR}/ from dependencies, categories v, w, x, y, and z.Mathieu Arnold2016-04-011-8/+8
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412351
* - Update security/gnutls to 3.4.10.Tijl Coosemans2016-03-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Rename the LIBDANE option DANE because that's the name of the protocol supported by libgnutls-dane and gnutls-cli. Also clarify the option description. - Add an IDN option. - libgnutls-openssl has been removed in 3.4. Some ports used this library in their LIB_DEPENDS but no port actually required it. - Some old API functions have been removed. Ports that used these have been updated or patched to use the new API. - Add a patch to print/cups to prevent overlinking of libgnutls.so. - Bump PORTREVISION on dependent ports. net-im/jabber: This port used the old API to give users fine grained control over which crypto algorithms were used via a configuration file. It's not immediately obvious how to port this to the new API so the port always uses the defaults now. www/hydra: Mark BROKEN. This uses more removed calls than the other ports, is said to be alpha quality and not fully functional and has been abandoned 10 years ago. PR: 207768 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=411990
* Fix build with ffmpeg 2.7 when built with non-default FFMPEG OPTIONThomas Zander2015-07-032-14/+25
| | | | | | | Approved by: portmgr (antoine) Notes: svn path=/head/; revision=391283
* - Update multimdedia/ffmpeg to latest upstrem version 2.7.1Thomas Zander2015-07-021-0/+4
| | | | | | | | | | - Mark ports BROKEN that were discovered not to work with this update; discovered by exp-run in bug 201181 - Note the need for manual upgrade of dependent ports in UPDATING Notes: svn path=/head/; revision=391183
* Convert to USES=jpegAntoine Brodin2015-06-221-3/+2
| | | | Notes: svn path=/head/; revision=390310
* - Drop @dirrm* from and add empty directories to pkg-plistsDmitry Marakasov2015-01-271-33/+1
| | | | | | | Approved by: portmgr blanket, kwm (for gnome@ ports) Notes: svn path=/head/; revision=378019
* x11-toolkits/nucleo: #include <cstring>John Marino2015-01-031-3/+11
| | | | | | | | This is fallout from png upgrade. Modern GCC needs <cstring> for memmove, although clang seems to be happy without it. Notes: svn path=/head/; revision=376077
* Bump portrevision after png updateBaptiste Daroussin2014-12-251-1/+1
| | | | Notes: svn path=/head/; revision=375598
* Properly support png 1.5Baptiste Daroussin2014-12-252-11/+21
| | | | Notes: svn path=/head/; revision=375534
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+1
| | | | | | | | | | | | | to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit) Notes: svn path=/head/; revision=367888
* pkg already deals with empty directoriesBaptiste Daroussin2014-09-021-1/+0
| | | | Notes: svn path=/head/; revision=367130
* - Replace security/gnutls with security/gnutls3 and update to 3.2.15Tijl Coosemans2014-07-231-1/+1
| | | | | | | | | | | | | | | - Bump PORTREVISION on all ports that depend on security/gnutls and adjust all ports that depend on security/gnutls3 - Update mail/anubis to version 4.2 which supports gnutls 3.x - Update mail/libvmime to a development snapshot (recommended by upstream developers) PR: 191274 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=362645
* - Do not advertise that port is BROKEN on PowerPC as it builds fine thereAlexey Dokuchaev2014-07-231-18/+16
| | | | | | | - Rearrange Makefile for better readability, remove extraneous bdeps, etc. Notes: svn path=/head/; revision=362635
* Fix shebang files and strip binariesBaptiste Daroussin2014-07-021-3/+3
| | | | Notes: svn path=/head/; revision=360145
* - USES=libtool pathfix tar:bzip2Tijl Coosemans2014-06-303-35/+8
| | | | | | | | - Test OPSYS before OSVERSION - Remove pthread patch Notes: svn path=/head/; revision=359923
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb) Notes: svn path=/head/; revision=351411
* - Fix build with clangMartin Wilke2014-01-195-84/+240
| | | | | | | | PR: 185706 Submitted by: ports fury Notes: svn path=/head/; revision=340302
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | x11-toolkits) Notes: svn path=/head/; revision=327785
* Remove duplicated patchBaptiste Daroussin2013-09-122-31/+0
| | | | | | | Submitted by: marino Notes: svn path=/head/; revision=327057
* Fix build with libc++Baptiste Daroussin2013-09-0611-0/+121
| | | | Notes: svn path=/head/; revision=326548
* Add an explicit dependency on pkgconfAntoine Brodin2013-09-051-1/+1
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=326422
* - graphics/libexif:Po-Chien Lin2013-03-141-1/+1
| | | | | | | | | | | | | | | | * Update to 0.6.21 * Add LICENSE * Switch to OptionsNG and PORTDOCS - Document libexif 2012-07-12 vulnerabilty - Bump PORTREVISION for libexif related ports - Trim headers while here PR: ports/175910 Approved by: swills (mentor) Security: d881d254-70c6-11e2-862d-080027a5ec9a Notes: svn path=/head/; revision=314141
* - Add UPDATING entry for gnutls updateRoman Bogorodskiy2013-02-051-1/+1
| | | | | | | - Chase shlib version bump for dependant ports Notes: svn path=/head/; revision=311722
* - Trim Makefile header per new bylawsAlexey Dokuchaev2012-11-161-24/+21
| | | | | | | | | | | - Convert to the new OPTIONS framework - Remove explicit shlib versions from LIB_DEPENDS - Relinquish maintainership Feature safe: yes Notes: svn path=/head/; revision=307473
* - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4Martin Wilke2012-06-061-2/+1
| | | | | | | Review by: bapt, David Naylor (kde team) Notes: svn path=/head/; revision=298557
* - update png to 1.5.10Dirk Meyer2012-06-012-8/+21
| | | | Notes: svn path=/head/; revision=297915
* - Define LICENSE (LGPL21)Alexey Dokuchaev2011-11-191-3/+6
| | | | | | | | | | - Ensure lines do not exceed 80-char limit - Touch Makefile header while here Feature safe: yes Notes: svn path=/head/; revision=286056
* Augment port description.Alexey Dokuchaev2011-11-191-1/+8
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286055
* Mark as broken on powerpc-9: does not compile.Mark Linimon2011-11-111-0/+4
| | | | | | | | Hat: portmgr Feature safe: yes Notes: svn path=/head/; revision=285525
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* - Kick MD5 supportMartin Wilke2011-07-021-1/+0
| | | | Notes: svn path=/head/; revision=276920
* Bump due to ffmpeg update to 0.7.1Martin Matuska2011-06-241-1/+1
| | | | Notes: svn path=/head/; revision=276239
* Chase security/gnutls update and add an UPDATING entry.Roman Bogorodskiy2011-06-051-2/+2
| | | | Notes: svn path=/head/; revision=275104
* - Bump PORTREVISION to chase the update of libexifWen Heping2011-03-041-1/+1
| | | | Notes: svn path=/head/; revision=270222
* - Update ffmpeg to 0.6Martin Matuska2010-07-241-0/+1
| | | | Notes: svn path=/head/; revision=258164
* - Update to version 0.7.6Alexey Dokuchaev2010-05-139-492/+98
| | | | | | | | | | | | | - Make libexif dependency mandatory: it is no longer considered optional by upstream sources, and there is no --without-exif configure script switch - Ensure that optional dependencies are recorded correctly (prevent silent dependency injection) - Augment list of available plugins (FFmpeg, GD) and add GnuTLS support - Correctly depend on QT components (via bpm infrastructure) - Clean up Makefile a bit and rearrange pkg-plist for better readability Notes: svn path=/head/; revision=254275
* - fix build for png-1.4.1Dirk Meyer2010-03-291-0/+4
| | | | Notes: svn path=/head/; revision=251745
* - update to 1.4.1Dirk Meyer2010-03-281-2/+2
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - update to jpeg-8Dirk Meyer2010-02-051-2/+2
| | | | Notes: svn path=/head/; revision=249285
* - update to jpeg7Dirk Meyer2009-07-181-2/+2
| | | | | | | Tested by: pav on pointyhat Notes: svn path=/head/; revision=238018
* - Update X.org ports to 7.4+ (few ports are more recent than the katamari).Florent Thoumie2009-01-231-1/+2
| | | | | | | | | | | - Bump PORTREVISION for all ports depending on libglut since the shlib version number went from 4 to 3. - Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't installed anymore. - Couple of ports fixes (mostly missing xorg components added to USE_XORG). Notes: svn path=/head/; revision=226727
* - Augment master sites per portlint(1)Alexey Dokuchaev2008-07-231-4/+5
| | | | | | | - Kill extraneous whitespace Notes: svn path=/head/; revision=217384
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* There is no need of the whole avahi bundle, avahi-libdns is enough.Alexey Dokuchaev2008-01-291-1/+1
| | | | | | | | PR: ports/119023 Submitted by: Dmitry Panov Notes: svn path=/head/; revision=206377