aboutsummaryrefslogtreecommitdiff
path: root/multimedia/vdr-plugin-markad
Commit message (Collapse)AuthorAgeFilesLines
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* multimedia/ffmpeg: update to 4.1Jan Beich2018-11-061-1/+1
| | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.1:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Notes: svn path=/head/; revision=484273
* multimedia/vdr-plugin-markad: unbreak with ffmpeg 4.0Jan Beich2018-05-032-14/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | decoder.cpp:175:23: error: use of undeclared identifier 'AV_CODEC_ID_MPEG2VIDEO_XVMC'; did you mean 'AV_CODEC_ID_MPEG2VIDEO'? video_codecid=AV_CODEC_ID_MPEG2VIDEO_XVMC; ^~~~~~~~~~~~~~~~~~~~~~~~~~~ AV_CODEC_ID_MPEG2VIDEO /usr/local/include/libavcodec/avcodec.h:220:5: note: 'AV_CODEC_ID_MPEG2VIDEO' declared here AV_CODEC_ID_MPEG2VIDEO, ///< preferred ID for MPEG-1/2 video decoding ^ decoder.cpp:179:43: error: use of undeclared identifier 'AV_CODEC_ID_MPEG2VIDEO_XVMC'; did you mean 'AV_CODEC_ID_MPEG2VIDEO'? if ((!video_codec) && (video_codecid==AV_CODEC_ID_MPEG2VIDEO_XVMC)) ^~~~~~~~~~~~~~~~~~~~~~~~~~~ AV_CODEC_ID_MPEG2VIDEO /usr/local/include/libavcodec/avcodec.h:220:5: note: 'AV_CODEC_ID_MPEG2VIDEO' declared here AV_CODEC_ID_MPEG2VIDEO, ///< preferred ID for MPEG-1/2 video decoding ^ decoder.cpp:191:45: error: use of undeclared identifier 'CODEC_CAP_TRUNCATED' if (video_codec->capabilities & CODEC_CAP_TRUNCATED) ^ decoder.cpp:192:39: error: use of undeclared identifier 'CODEC_FLAG_TRUNCATED' video_context->flags|=CODEC_FLAG_TRUNCATED; // we do not send complete frames ^ decoder.cpp:194:36: error: use of undeclared identifier 'CODEC_FLAG2_FAST' video_context->flags2|=CODEC_FLAG2_FAST; // really? ^ decoder.cpp:201:40: error: use of undeclared identifier 'CODEC_FLAG2_CHUNKS' video_context->flags2|=CODEC_FLAG2_CHUNKS; // needed for H264! ^ decoder.cpp:214:46: error: use of undeclared identifier 'AV_CODEC_ID_MPEG2VIDEO_XVMC'; did you mean 'AV_CODEC_ID_MPEG2VIDEO'? if ((ret < 0) && (video_codecid==AV_CODEC_ID_MPEG2VIDEO_XVMC)) ^~~~~~~~~~~~~~~~~~~~~~~~~~~ AV_CODEC_ID_MPEG2VIDEO /usr/local/include/libavcodec/avcodec.h:220:5: note: 'AV_CODEC_ID_MPEG2VIDEO' declared here AV_CODEC_ID_MPEG2VIDEO, ///< preferred ID for MPEG-1/2 video decoding ^ decoder.cpp:224:43: error: no member named 'codec_name' in 'AVCodecContext'; did you mean 'coded_frame'? memset(video_context->codec_name,0,sizeof(video_context->codec_name)); ^~~~~~~~~~ coded_frame /usr/local/include/libavcodec/avcodec.h:2760:35: note: 'coded_frame' declared here attribute_deprecated AVFrame *coded_frame; ^ decoder.cpp:224:78: error: no member named 'codec_name' in 'AVCodecContext' memset(video_context->codec_name,0,sizeof(video_context->codec_name)); ~~~~~~~~~~~~~ ^ decoder.cpp:244:22: error: use of undeclared identifier 'AV_CODEC_ID_MPEG2VIDEO_XVMC'; did you mean 'AV_CODEC_ID_MPEG2VIDEO'? case AV_CODEC_ID_MPEG2VIDEO_XVMC: ^~~~~~~~~~~~~~~~~~~~~~~~~~~ AV_CODEC_ID_MPEG2VIDEO /usr/local/include/libavcodec/avcodec.h:220:5: note: 'AV_CODEC_ID_MPEG2VIDEO' declared here AV_CODEC_ID_MPEG2VIDEO, ///< preferred ID for MPEG-1/2 video decoding ^ decoder.cpp:247:22: error: duplicate case value 'AV_CODEC_ID_MPEG2VIDEO' case AV_CODEC_ID_MPEG2VIDEO: ^ decoder.cpp:244:22: note: previous case defined here case AV_CODEC_ID_MPEG2VIDEO_XVMC: ^ decoder.cpp:305:14: error: use of undeclared identifier 'AV_CODEC_ID_MPEG2VIDEO_XVMC'; did you mean 'AV_CODEC_ID_MPEG2VIDEO'? case AV_CODEC_ID_MPEG2VIDEO_XVMC: ^~~~~~~~~~~~~~~~~~~~~~~~~~~ AV_CODEC_ID_MPEG2VIDEO /usr/local/include/libavcodec/avcodec.h:220:5: note: 'AV_CODEC_ID_MPEG2VIDEO' declared here AV_CODEC_ID_MPEG2VIDEO, ///< preferred ID for MPEG-1/2 video decoding ^ decoder.cpp:308:14: error: duplicate case value 'AV_CODEC_ID_MPEG2VIDEO' case AV_CODEC_ID_MPEG2VIDEO: ^ decoder.cpp:305:14: note: previous case defined here case AV_CODEC_ID_MPEG2VIDEO_XVMC: ^ PR: 227726 Reported by: antoine (via exp-run) Notes: svn path=/head/; revision=468981
* multimedia/ffmpeg: update to 4.0Jan Beich2018-05-021-1/+3
| | | | | | | | | | | | | | | - FFSERVER support was removed upstream - libressl now uses libtls backend instead of patching openssl one - Clang i386 no longer uses 16-byte aligned stack Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.0:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 227726 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D15175 Notes: svn path=/head/; revision=468844
* Bump PORTREVISIONs of all users of math/mpc that we just updated toGerald Pfeifer2018-03-101-1/+1
| | | | | | | version 1.1.0 (via revision 464079). Notes: svn path=/head/; revision=464084
* - Update WWWDmitry Marakasov2018-01-211-1/+1
| | | | Notes: svn path=/head/; revision=459579
* multimedia/ffmpeg: update to 3.4Jan Beich2017-10-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | Notable changes: - i386/amd64 now depend on NASM per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39 - NETCDF is now MYSOFA but the dependency doesn't exist in ports yet - SCHROEDINGER is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9 - DRM, LIBRSVG2, LIBXML2 are new options - ABI isn't completely compatible: some structs have changed Minor cleanup: - Don't pass --disable-{in,out}dev when it's already blocked by disabled dependency - Drop redundant "Enable" from option descriptions - Switch CDIO_DESC to use Mk/bsd.options.desc.mk Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ PR: 223057 Exp-run by: antoine Notes: svn path=/head/; revision=452570
* Remove USES=execinfo.Mathieu Arnold2017-09-221-1/+1
| | | | | | | | | | PR: 220271 Submitted by: mat (review), Yasuhiro KIMURA (PR) Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D11488 Notes: svn path=/head/; revision=450351
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* - Add LICENSEDmitry Marakasov2017-02-201-10/+17
| | | | | | | | | | - Remove bogus HAVE_CONFIGURE - Don't install license with docs - Switch to options helpers - Pet portlint Notes: svn path=/head/; revision=434440
* 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
* Remove libogg.so.8, libvorbis.so.4 and libvorbisfile.so.6 compatibilityTijl Coosemans2016-12-081-0/+1
| | | | | | | | links that were added in r374303 to prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since. Notes: svn path=/head/; revision=428129
* multimedia/vdr-plugin-markad: Fix build with ffmpeg 3.0.xBen Woods2016-05-1012-100/+187
| | | | | | | | | | | | | | | | | | | | | | | - Update patch of command/decoder.cpp to allow vdr-plugin-markad 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 patch is backwards compatible with ffmpeg 2.8.x. The additional changes to this file were based on upstream bug report #1898 [1], and also the requirement to replace s/avcodec_alloc_frame/av_frame_alloc/g. - Regenerate patches with makepatch (pet portlint), and remove PATCH_STRIP=-p1 from Makefile. [1] https://projects.vdr-developer.org/issues/1898 PR: 209386 Reported by: antoine (PR207547) Reviewed by: mat (mentor) Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D6283 Notes: svn path=/head/; revision=414944
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Switch to USES=execinfoPawel Pekala2015-12-151-3/+2
| | | | Notes: svn path=/head/; revision=403811
* Reset maintainerEitan Adler2015-12-141-1/+1
| | | | Notes: svn path=/head/; revision=403704
* Switch my ports to USES= tar:...Juergen Lock2014-03-151-2/+1
| | | | Notes: svn path=/head/; revision=348333
* - Finally stagify the vdr ports. \o/Juergen Lock2014-03-014-16/+20
| | | | | | | | | - Use new LIB_DEPENDS syntax. - Change multimedia/vdr-plugins defaults and bump PORTREVISION for it. (switch from xvdr to vnsiserver and disable plugins depending on ffmpeg0) Notes: svn path=/head/; revision=346615
* - Capitalize multimedia/vdr-plugin-markad RESTRICTED.Juergen Lock2013-12-111-1/+1
| | | | | | | | | - Add it to LEGAL. Submitted by: eadler Notes: svn path=/head/; revision=336189
* Chase ffmpeg update.Juergen Lock2013-11-162-0/+51
| | | | | | | Obtained from: funtoo (files/patch-vdr-markad-0.1.4-libav9) Notes: svn path=/head/; revision=333986
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-1/+2
| | | | | | | multimedia) Notes: svn path=/head/; revision=327747
* Add explicit dependency on pkgconf (8 ports)John Marino2013-09-111-0/+1
| | | | Notes: svn path=/head/; revision=326997
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - Fix multimedia/vdr-plugin-markad build by fixing .include order.Juergen Lock2013-07-101-7/+1
| | | | | | | | | | - Switch to USES= gmake. - Remove 7.x cruft. Submitted by: pointyhat via miwi Notes: svn path=/head/; revision=322722
* - Update to 0.1.4 .Juergen Lock2013-02-166-29/+103
| | | | | | | | - Add patches to work with vdr set to "Show channel names with source". - Convert Makefile header. Notes: svn path=/head/; revision=312373
* - Update multimedia/vdr to 1.7.29 .Juergen Lock2012-07-221-1/+1
| | | | | | | - Bump PORTREVISION for all plugins. Notes: svn path=/head/; revision=301310
* - Update multimedia/vdr and multimedia/vdr-plugins to 1.7.28 .Juergen Lock2012-06-191-3/+3
| | | | | | | | | | | | | | - Update xineliboutput XKeySym.Pause key in example remote.conf. ("space" instead of "Space") - Add multimedia/vdr-plugin-extrecmenu 1.2.2 to vdr-plugins metaport. - Update multimedia/vdr-plugin-skinenigmang to 0.1.2s20120606 git snapshot. - Update www/vdr-plugin-live to 0.2.0s20120325 git snapshot. - Bump PORTREVISION for all other plugins and add api fixes where necessary. - Add HISTORY to PORTDOCS for most plugins. (those that have it) - Remove shlib major versions from LIB_DEPENDS to pet portlint. Notes: svn path=/head/; revision=299655
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* Bump PORTREVISION to chase ffmpeg update.Juergen Lock2012-04-271-1/+1
| | | | Notes: svn path=/head/; revision=295611
* - Update multimedia/vdr and multimedia/vdr-plugins to 1.7.27 .Juergen Lock2012-04-212-2/+2
| | | | | | | | | | | | | | | - Update multimedia/vdr-plugin-epgsearch to 1.0.1s20120322 git snapshot. - Update multimedia/vdr-plugin-femon to 1.7.15 . - Update multimedia/vdr-plugin-iptv to 0.5.0 . - Update multimedia/vdr-plugin-osdteletext to 0.9.2 . - Update multimedia/vdr-plugin-streamdev to 0.5.1p20120311 git snapthot. - Update multimedia/vdr-plugin-xineliboutput to 1.0.90s20111129.1002 cvs snapshot. - Bump PORTREVISION for all other plugins and add vdr 1.7.27 compatibility/bugfix patches where necessary. Notes: svn path=/head/; revision=295188
* - Bump PORTREVISION to chase the update of multimedia/libvpxAshish SHUKLA2012-02-161-1/+1
| | | | Notes: svn path=/head/; revision=291538
* - Update multimedia/vdr to 1.7.22 .Juergen Lock2012-01-212-2/+2
| | | | | | | | | | | | | | | - Add startup script that the rc.d script invokes to wait for /dev/dvb nodes to appear, can be disabled by setting vdr_waitdvb="NO" in rc.conf(5). (This turned out to be necessary in some situations because devd starts webcamd only later in the boot process.) - One more fix for changing OSD language when using UTF-8. - Update multimedia/vdr-plugin-femon to 1.7.11 . - Update multimedia/vdr-plugin-ttxtsubs to 0.2.4 . - Bump PORTREVISION for all other plugins. - Update www/vdradmin-am to 3.6.9 . Notes: svn path=/head/; revision=289562
* Bump PORTREVISION to chase ffmpeg update.Juergen Lock2011-12-021-1/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286780
* Bump PORTREVISION to chase ffmpeg update.Juergen Lock2011-11-111-1/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=285587
* Bump PORTREVISION after ffmpeg update. (markad records the ffmpeg versionJuergen Lock2011-10-131-1/+1
| | | | | | | during build and complains during runtime if it doesn't match...) Notes: svn path=/head/; revision=283491
* Bump PORTREVISION after ffmpeg update. (markad records the ffmpeg versionJuergen Lock2011-09-271-1/+1
| | | | | | | during build and complains if it doesn't match...) Notes: svn path=/head/; revision=282504
* More sub-Makefile fixes to pass through CC/CXX. (I hope all vdr portsJuergen Lock2011-08-181-0/+15
| | | | | | | now finally build with clang properly...) Notes: svn path=/head/; revision=279977
* - Update multimedia/vdr to 1.7.19 (with parts of the update revertedJuergen Lock2011-06-251-1/+1
| | | | | | | | | | to avoid a known bug.) - Fix build with clang for vdr and plugins, and also fix a few bugs it uncovered. - Bump PORTREVISION for all plugins. Notes: svn path=/head/; revision=276377
* Bump due to ffmpeg update to 0.7.1Martin Matuska2011-06-241-1/+1
| | | | Notes: svn path=/head/; revision=276239
* - Add support patches for teletext subtitle plugin to multimedia/vdrJuergen Lock2011-06-101-1/+1
| | | | | | | | | | with knob defaulted to on. (multimedia/vdr-plugin-ttxtsubs, to be committed next.) - Bump PORTVERSION for vdr, and also for its plugins because this is an ABI change. Notes: svn path=/head/; revision=275316
* - Update multimedia/vdr to 1.7.18 .Juergen Lock2011-04-192-1/+2
| | | | | | | | - Bump PORTVERSION for all plugins. - Add markad plugin to multimedia/vdr-plugins metaport. Notes: svn path=/head/; revision=272936
* http://www.vdr-wiki.de/wiki/index.php/Markad-pluginJuergen Lock2011-04-1610-0/+371
MarkAd marks advertisements in VDR recordings. WWW: http://projects.vdr-developer.org/projects/plg-markad Notes: svn path=/head/; revision=272812