summaryrefslogtreecommitdiff
path: root/multimedia/obs-studio (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* multimedia/obs-studio: Update 24.0.3 -> 24.0.4Yuri Victorovich2019-12-072-4/+4
| | | | | | | Reported by: repology Notes: svn path=/head/; revision=519182
* multimedia/obs-studio: Update 24.0.2 -> 24.0.3Yuri Victorovich2019-10-132-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=514400
* multimedia/obs-studio: Update 24.0.1 -> 24.0.2Yuri Victorovich2019-10-122-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=514317
* multimedia/obs-studio: Update 24.0.0 -> 24.0.1Yuri Victorovich2019-10-052-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=513839
* multimedia/obs-studio: Update 23.2.1 -> 24.0.0Yuri Victorovich2019-09-215-47/+22
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=512476
* Drop C++11 workaround for GCC < 6 after r449590Jan Beich2019-09-141-7/+1
| | | | | | | | | | | lang/gcc5 will expire in ~1 month. If someone still uses lang/gcc48 they should backport C++11 fix instead. QA on GCC architecuters is currently limited to powerpc64 which uses GCC_DEFAULT. PR: 193528 Notes: svn path=/head/; revision=512079
* 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-0/+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
* multimedia/obs-studio: Update 23.2.0 -> 23.2.1Yuri Victorovich2019-06-192-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=504524
* multimedia/obs-studio: Update 23.1.0 -> 23.2.0Yuri Victorovich2019-06-133-31/+27
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=504056
* Remove esound support from pulseaudio as audio/esound expired.Rene Ladan2019-05-011-0/+1
| | | | | | | | | Bump PORTREVISIONs of dependent ports. Build-tested in poudriere on a head-amd64 jail for audio/pulseaudio* Notes: svn path=/head/; revision=500606
* multimedia/obs-studio: Update 23.0.2 -> 23.1.0Yuri Victorovich2019-04-073-6/+22
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=498227
* multimedia/x264: update to 0.157.2945Jan Beich2019-03-181-0/+1
| | | | | | | | Changes: https://git.videolan.org/?p=x264.git;a=shortlog;h=72db437770fd1ce3961f624dd57a8e75ff65ae0b ABI: https://abi-laboratory.pro/tracker/timeline/x264/ Notes: svn path=/head/; revision=496215
* multimedia/obs-studio: Update 23.0.1 -> 23.0.2Yuri Victorovich2019-03-092-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=495198
* multimedia/obs-studio: Update 23.0.0 -> 23.0.1Yuri Victorovich2019-03-012-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=494222
* multimedia/obs-studio: Update 22.0.3 -> 23.0.0Yuri Victorovich2019-02-263-11/+27
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=493939
* 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
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* 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/obs-studio: Compatibility fix for new obs-libfdk APIYuri Victorovich2018-12-012-3/+7
| | | | | | | PR: 233590 Notes: svn path=/head/; revision=486325
* 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
* Bump PORTREVISION to chase update of multimedia/v4l_compat and libv4lThomas Zander2018-09-291-0/+1
| | | | Notes: svn path=/head/; revision=480899
* Bump PORTREVISION for mbedtls update (r479770).Tijl Coosemans2018-09-141-1/+1
| | | | Notes: svn path=/head/; revision=479775
* Change x11/xorgproto to become a build depNiclas Zeising2018-09-111-0/+1
| | | | | | | | | | | | | | | | | | Change x11/xorgproto to become a build time dependency when added to USE_XORG. Change the dependency to be on the port, rather than a file the port installs. Fix fallout. Bump portrevision on depending ports. PR: 230909 Reviewed by: eadler Approved by: portmgr (antoine) Obtained from: https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/xorgproto exp-run: antoine Differential Revision: https://reviews.freebsd.org/D16906 Notes: svn path=/head/; revision=479538
* multimedia/obs-studio: Update 22.0.2 -> 22.0.3Yuri Victorovich2018-09-042-6/+6
| | | | | | | | PR: 231121 Submitted by: swills Notes: svn path=/head/; revision=478926
* multimedia/obs-studio: Update 22.0.1 -> 22.0.2Yuri Victorovich2018-08-312-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=478590
* multimedia/obs-studio: Update 22.0.0 -> 22.0.1Yuri Victorovich2018-08-242-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=477970
* multimedia/obs-studio: Update 21.1.2 -> 22.0.0Yuri Victorovich2018-08-213-5/+32
| | | | | | | | | | | Port changes: * Add the blanket D_WITH_GETLINE because few places need it. * Add dependency Reported by: portscout Notes: svn path=/head/; revision=477704
* multimedia/x264: update to 0.155.2917Jan Beich2018-08-101-1/+1
| | | | | | | | | | - HI10P is always built after https://git.videolan.org/?p=x264.git;a=commitdiff;h=71ed44c73124 Changes: https://git.videolan.org/?p=x264.git;a=shortlog;h=0a84d986e7020f8344f00752e3600b9769cc1e85 ABI: https://abi-laboratory.pro/tracker/timeline/x264/ Notes: svn path=/head/; revision=476802
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | 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
* multimedia/obs-studio: Update 21.1.1 -> 21.1.2Yuri Victorovich2018-05-142-5/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=469850
* multimedia/ffmpeg: update to 4.0Jan Beich2018-05-021-0/+1
| | | | | | | | | | | | | | | - 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
* multimedia/obs-studio: Update 21.0.3 -> 21.1.1Yuri Victorovich2018-03-253-37/+76
| | | | | | | | | | | | | | | | | | | Port changes: * Take maintainership * Change to DISTVERSION * Add swig30 to BUILD_DEPENDS * Sort and add to LIB_DEPENDS * Add lua and python to USES * Change GH_ACCOUNT to developer's account * Sort USE_QT5 * Add to and sort USE_XORG * Remove unnecessary INSTALLS_ICONS * Remove unnecessary patch of -ldl in Linux-only code * Now works with any python version 3.4+ * Now scripting works via python and lua Notes: svn path=/head/; revision=465495
* Update to 21.0.3.Vanilla I. Shu2018-03-082-4/+4
| | | | Notes: svn path=/head/; revision=463886
* 1: Update to 21.0.2.Vanilla I. Shu2018-02-093-15/+55
| | | | | | | 2: sort pkg-plist. Notes: svn path=/head/; revision=461295
* multimedia/{lib,}x264: update to 0.152.2854Jan Beich2017-12-291-0/+1
| | | | | | | Changes: https://git.videolan.org/?p=x264.git;a=shortlog;h=e9a5903edf8ca59ef20e6f4894c196f135af735e Notes: svn path=/head/; revision=457488
* Update to 20.1.3.Vanilla I. Shu2017-12-022-4/+4
| | | | Notes: svn path=/head/; revision=455377
* Add missing patch.Vanilla I. Shu2017-10-291-0/+10
| | | | Notes: svn path=/head/; revision=453108
* Update to 20.1.1.Vanilla I. Shu2017-10-296-20/+19
| | | | Notes: svn path=/head/; revision=453104
* 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
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-0/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 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, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* Update to 20.0.1.Vanilla I. Shu2017-08-183-4/+36
| | | | Notes: svn path=/head/; revision=448202
* Update to 19.0.3.Vanilla I. Shu2017-07-013-5/+33
| | | | Notes: svn path=/head/; revision=444820
* 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
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-0/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* Update to 18.0.1.Vanilla I. Shu2017-03-143-4/+26
| | | | Notes: svn path=/head/; revision=436149
* Update to 17.0.2.Vanilla I. Shu2017-01-262-4/+4
| | | | Notes: svn path=/head/; revision=432476
* Update to 17.0.1.Vanilla I. Shu2017-01-182-4/+4
| | | | Notes: svn path=/head/; revision=431793