aboutsummaryrefslogtreecommitdiff
path: root/multimedia/dvbcut
Commit message (Collapse)AuthorAgeFilesLines
* graphics/mesa-libs: Bump reverse deps for libglvndKevin Bowling2021-06-221-1/+1
| | | | | | | | | | Per discussion with bapt on helping pkg handle the changing of these deps and avoiding impossible upgrade senarios. PR: 246767 Reviewed by: manu, bapt Approved by: x11 Differential Revision: https://reviews.freebsd.org/D30824
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Add PORTSCOUT limit pattern to prevent false positivesStefan Eßer2020-02-161-0/+2
| | | | | | | | | | For each new version there is a tag that ends in -1 (or possibly other numbers) that seems to just contain additional Debian specific files. Approved by: antoine (implicit) Notes: svn path=/head/; revision=526311
* Add USES=xorg USES=gl, ports categories mNiclas Zeising2019-11-061-1/+1
| | | | | | | | Add USES=xorg and USES=gl to ports in categories starting with 'm' While here, try to sprinkle other USES (mostly gnome and sdl) as needed. Notes: svn path=/head/; revision=516916
* multimedia/ffmpeg: update to 4.2Jan Beich2019-08-051-1/+1
| | | | | | | | Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.2:/Changelog ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ Notes: svn path=/head/; revision=508216
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* Remove obsolete options dialog (which now only offered QT5 since QT4 hasStefan Eßer2019-03-241-7/+3
| | | | | | | | | | | | been removed from the ports system). The port revision is kept unchanged since the binaries and packages built from this port are unaffected by this changed. Approved by: antoine (implicit) Notes: svn path=/head/; revision=496716
* multimedia/dvbcut: remove QT4 option (Qt4 deprecation)Tobias C. Berner2019-03-161-12/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=495923
* Fix build on gcc-based architectures:Mark Linimon2019-03-121-2/+3
| | | | | | | | | | | cc1plus: error: unrecognized command line option "-std=gnu++11" While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=495420
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* Mark QT4 ports/functionality for removal on 2019-03-15Rene Ladan2018-12-021-0/+7
| | | | | | | | | | | | | | While here, chase some KDE4 ports and functionality, these are scheduled for removal on 2018-12-31. Change the default option/flavor to QT5 where applicable or use alternative toolkits like GTK. Submitted by: tcberner Reviewed by: adridg, jhale, rene, tcberner Approved by: portmgr (implicit, flavor hook) Differential Revision: https://reviews.freebsd.org/D17741 Notes: svn path=/head/; revision=486467
* multimedia/ffmpeg: update to 4.1Jan Beich2018-11-061-0/+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
* regular USE_GITHUB cleanup.Mathieu Arnold2018-09-022-4/+4
| | | | Notes: svn path=/head/; revision=478793
* Update to version 0.7.3.Stefan Eßer2018-09-022-7/+6
| | | | | | | Approved by: antoine (implicit) Notes: svn path=/head/; revision=478762
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+4
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* Fix port by updating to the latest upstream version.Stefan Eßer2018-05-042-8/+6
| | | | | | | | | Set default Qt version to QT5. Approved by: antoine (implicit) Notes: svn path=/head/; revision=469010
* multimedia/ffmpeg: update to 4.0Jan Beich2018-05-021-0/+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
* Upgrade to version 0.7.2.Stefan Eßer2018-02-062-5/+4
| | | | | | | Approved by: antoine (implicit) Notes: svn path=/head/; revision=461113
* 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
* 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
* Fix program icons being installed in the wrong directory.Stefan Eßer2017-05-062-14/+14
| | | | Notes: svn path=/head/; revision=440290
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* multimedia/ffmpeg: update to 3.2.2Jan Beich2016-12-111-0/+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
* http://github.com redirects to https://github.com, spare everyone a redirect.Mathieu Arnold2016-12-021-1/+1
| | | | | | | Sponsored by: Absolight Notes: svn path=/head/; revision=427548
* Update to version 0.7.1. That version uses unique_ptr which is notStefan Eßer2016-12-0110-32/+52
| | | | | | | | | | | | 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) Notes: svn path=/head/; revision=427490
* Stop exporting QT_BINDIR and QT_LIBDIR to PLIST_SUB.Tobias C. Berner2016-11-291-1/+0
| | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=427356
* Update to version 0.7.0, which appears to be another fork of the no longerStefan Eßer2016-11-1411-59/+78
| | | | | | | | | | | | 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) Notes: svn path=/head/; revision=426091
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-6/+6
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Update to the port's dependencies and minor changes to the port's patches.Stefan Eßer2015-08-036-32/+37
| | | | | | | | | | No functional changes. Submitted by: Andriy Voskoboinyk <s3erios@gmail.com> Approved by: antoine Notes: svn path=/head/; revision=393493
* Update ports in the [i-m]* category to not use GH_COMMIT.Mathieu Arnold2015-05-072-6/+3
| | | | | | | | | | With minor cleanups to make things simpler. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=385637
* Cleanup plistBaptiste Daroussin2015-02-052-5/+2
| | | | | | | | Add shared-mime-info and desktop-file-utils as spotted by the Q/A But portrevision per desktop-file-utils Notes: svn path=/head/; revision=378458
* Replace USES=libtool:oldver with USES=libtool or USES=libtool:keepla inTijl Coosemans2014-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=374303
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-0/+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
* Modernize LIB_DEPENDSBaptiste Daroussin2014-07-141-4/+4
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=361812
* Fix build of dvbcut , which was broken by a recent ffmpeg upgrade.Stefan Eßer2013-12-0212-79/+70
| | | | | | | | | | | | | | | | | This port is no longer based on the Qt3 version of dvbcut plus a large patch to make it build on Qt4 with the Qt3 emulation layer. A fork that uses native Qt4 calls is used instead. The generated files moc_progressstatusbar.cpp and moc_progresswindow.cpp trigger an internal error in clang, if compiled with optimization. This bug has been accepted as 18098 in the llvm bug tracker. To work around this problem, the above mentioned two files are compiled with -O0 appended to the compiler flages. The post-configure target in the ports Makefile is to be removed, when a fixed version of clang is distributed in all FreeBSD releases supported by the ports infrastructure. Notes: svn path=/head/; revision=335469
* Mark broken due to dependency on older FFMPEG.Stefan Eßer2013-10-291-2/+1
| | | | | | | I'm working on a fix. Notes: svn path=/head/; revision=331939
* Fix build in poudriere: Use LOCALBASE instead of PREFIX for include files.Stefan Eßer2013-10-092-10/+38
| | | | | | | | Partial STAGE support has been implemented, but there is a problem with package building that still has to be resolved (missing work/.metadir). Notes: svn path=/head/; revision=329913
* Fix build: Patch was not relative to build directory.Stefan Eßer2013-10-091-2/+2
| | | | Notes: svn path=/head/; revision=329904
* Fix build on -CURRENT.Stefan Eßer2013-10-046-16/+31
| | | | Notes: svn path=/head/; revision=329335
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | multimedia) Notes: svn path=/head/; revision=327747
* Remove option to build with QT3, since the QT3 port is no longer supported.Stefan Eßer2013-07-101-25/+1
| | | | | | | | USE_GCC=any since testing with CLANG caused a compilation error on amd64 (possibly a compiler bug) and I did not have time to investigate ... Notes: svn path=/head/; revision=322664
* - convert USE_CMAKE to USESMax Brazhnikov2013-03-221-1/+1
| | | | | | | | | | - while here clean up some ports from CMAKE_VERBOSE, which is intended for users Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314960
* - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4Martin Wilke2012-06-061-1/+1
| | | | | | | Review by: bapt, David Naylor (kde team) Notes: svn path=/head/; revision=298557
* Convert to use new options framework.Stefan Eßer2012-06-041-15/+16
| | | | Notes: svn path=/head/; revision=298350
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* No functional change: The qt4 compatibility patch was stored as uuencodedStefan Eßer2012-02-243-900/+1
| | | | | | | | | bzip2-file. Use the smaller pure (binary) bzipped patch file instead. Submitted by: Alex Kozlow Notes: svn path=/head/; revision=292172
* - Bump PORTREVISION to chase the update of multimedia/libvpxAshish SHUKLA2012-02-161-0/+1
| | | | Notes: svn path=/head/; revision=291538
* Remove CMAKE_USE_PTHREAD from the ports using it.Raphael Kubo da Costa2011-11-141-1/+0
| | | | | | | | | | | This setting has not had any effect since r1.13 to bsd.cmake.mk, as it was only useful when we supported FreeBSD < 7. Approved by: avilla (mentor), portmgr (miwi) Feature safe: yes Notes: svn path=/head/; revision=285744
* Another attempt to finally get the Qt4 build dependencies right:Stefan Eßer2011-07-071-1/+1
| | | | | | | | Add build dependency on rcc, even though there are no .rcc files. and I did not see rcc actually being used during the compilation. Notes: svn path=/head/; revision=277216
* Add further build dependencies on moc and uic.Stefan Eßer2011-07-031-2/+2
| | | | | | | Set MAINTAINER back to my mail address. Notes: svn path=/head/; revision=276995