aboutsummaryrefslogtreecommitdiff
path: root/multimedia/mpc-qt
Commit message (Collapse)AuthorAgeFilesLines
* multimedia/mpc-qt: update to 22.02Jan Beich2022-02-052-5/+5
| | | | Changes: https://github.com/mpc-qt/mpc-qt/compare/v20.10...v22.02
* multimedia/mpc-qt: sort USE_*Jan Beich2021-07-151-3/+2
|
* multimedia/mpc-qt: chase new homeJan Beich2021-07-153-5/+3
| | | | | | See https://github.com/cmdrkotori/mpc-qt-origin/commit/676c444fd37c Reported by: upstream (via mail)
* graphics/mesa-libs: Bump reverse deps for libglvndKevin Bowling2021-06-221-0/+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
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* multimedia/mpc-qt: update to 20.10Jan Beich2020-10-163-8/+7
| | | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt-origin/releases/tag/v20.10 Reported by: GitHub (watch releases) Notes: svn path=/head/; revision=552506
* multimedia/mpc-qt: switch to the new homeJan Beich2020-08-293-5/+5
| | | | Notes: svn path=/head/; revision=546940
* multimedia/mpv: update to 0.30.0Jan Beich2019-12-221-1/+1
| | | | | | | | | | | | | | | | | | | | ABI is compatible but rebuild consumers anyway in case some can take advantage of new APIs e.g., https://github.com/mpv-player/mpv/commit/e08f235578aa - DVDREAD is no longer supported after https://github.com/mpv-player/mpv/commit/622940498525 - DVDNAV needs libdvdred after https://github.com/mpv-player/mpv/commit/34e6a26f4d5a - TEST needs newer dependency after https://github.com/mpv-player/mpv/commit/293dfc782552 - V4L can no longer use tv:// after https://github.com/mpv-player/mpv/commit/b30e85508a30 - VULKAN option uses libplacebo after https://github.com/mpv-player/mpv/commit/7006d6752d7d - ZIMG to support --vf=fingerprint after https://github.com/mpv-player/mpv/commit/9cfeafa89e2e - ZSH option is no longer needed after https://github.com/mpv-player/mpv/commit/2712db823884 - Drop --disable-vapoursynth-lazy after https://github.com/mpv-player/mpv/commit/fb8d240c4d04 - Add --disable-shaderc to avoid no longer used dependency brought via libplacebo Changes: https://github.com/mpv-player/mpv/releases/tag/v0.30.0 Notes: svn path=/head/; revision=520597
* 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/mpc-qt: upstream disappeared, so use a mirror for nowJan Beich2019-11-062-5/+4
| | | | | | | fetch: https://codeload.github.com/cmdrkotori/mpc-qt/tar.gz/v18.08?dummy=/cmdrkotori-mpc-qt-v18.08_GH0.tar.gz: Not Found Notes: svn path=/head/; revision=516892
* Mark a few ports BROKEN (unfetchable)Antoine Brodin2019-11-061-0/+2
| | | | Notes: svn path=/head/; revision=516887
* Drop C++11 workaround for GCC < 6 after r449590Jan Beich2019-09-141-2/+0
| | | | | | | | | | | 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
* 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
* 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
* 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
* 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
* Add DOCS options to ports that should have one.Mathieu Arnold2018-09-101-0/+2
| | | | | | | | | | | Also various fixes related to said option. PR: 230864 Submitted by: mat exp-runs by: antoine Notes: svn path=/head/; revision=479406
* multimedia/mpc-qt: track PORTEPOCH since r331464Jan Beich2018-08-041-1/+1
| | | | Notes: svn path=/head/; revision=476371
* multimedia/mpc-qt: update to 18.08Jan Beich2018-08-043-8/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Build with modern Clang to avoid playback crash on FreeBSD 10.4: $ mpc-qt /path/to/foo.mkv [...] Thread 1 received signal SIGSEGV, Segmentation fault. 0x0000000800da8721 in mpv_render_context_render (ctx=0x81580ac40, params=0x7fffffff3f30) at ../video/out/vo_libmpv.c:405 405 if (GET_MPV_RENDER_PARAM(params, MPV_RENDER_PARAM_BLOCK_FOR_TARGET_TIME, (gdb) backtrace full #0 0x0000000800da8721 in mpv_render_context_render (ctx=0x81580ac40, params=0x7fffffff3f30) at ../video/out/vo_libmpv.c:405 do_render = 1 frame = 0x8263046a0 wait_present_count = 2 dummy = {pts = 0, duration = 0, vsync_interval = 0, vsync_offset = 0, ideal_frame_duration = 0, num_vsyncs = 0, redraw = false, repeat = false, still = false, display_synced = false, can_drop = false, current = 0x0, num_frames = 0, frames = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, frame_id = 0} err = 0 #1 0x00000000004c2d81 in MpvGlWidget::paintGL (this=0x8159eb860) at mpvwidget.cpp:870 fbo = {fbo = 12, w = 1798, h = 2012, internal_format = 0} params = {{type = MPV_RENDER_PARAM_OPENGL_FBO, data = 0x7fffffff3f50}, {type = MPV_RENDER_PARAM_FLIP_Y, data = 0x7fffffff3f63}} yes = true #2 0x000000080140e3b6 in QOpenGLWidgetPrivate::invokeUserPaint (this=0x815909080) at kernel/qopenglwidget.cpp:878 q = 0x8159eb860 ctx = 0x81596ec30 f = 0x815819d58 #3 0x000000080140e47f in QOpenGLWidgetPrivate::render (this=0x815909080) at kernel/qopenglwidget.cpp:899 q = 0x8159eb860 [...] Changes: https://github.com/cmdrkotori/mpc-qt/releases/tag/v18.08 Changes: https://github.com/cmdrkotori/mpc-qt/compare/v18.03...v18.08 Notes: svn path=/head/; revision=476370
* 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/mpc-qt: update to 18.03Jan Beich2018-05-112-5/+5
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/78c4816...v18.03 Notes: svn path=/head/; revision=469606
* multimedia/mpc-qt: update to 17.11.10Jan Beich2018-01-262-5/+5
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/0fff34c...78c4816 Notes: svn path=/head/; revision=459995
* multimedia/mpc-qt: update to 17.11.8Jan Beich2017-12-232-5/+5
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/b6b5e54...0fff34c Notes: svn path=/head/; revision=457015
* multimedia/mpc-qt: update to 17.11.4Jan Beich2017-11-193-4/+6
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/v17.11...b6b5e54 Notes: svn path=/head/; revision=454470
* multimedia/mpc-qt: update to 17.11Jan Beich2017-11-012-4/+4
| | | | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/releases/tag/v17.11 Changes: https://github.com/cmdrkotori/mpc-qt/compare/v17.10...v17.11 MFH: 2017Q4 (mostly bug fixes, remains a snapshot) Notes: svn path=/head/; revision=453289
* multimedia/mpc-qt: chase submodule after r451073Jan Beich2017-10-022-3/+3
| | | | | | | | Changes: https://github.com/Argon-/mpv-stats/compare/6a37a6d...f42aa68 MFH: 2017Q4 Notes: svn path=/head/; revision=451074
* multimedia/mpc-qt: update to 17.10Jan Beich2017-10-022-5/+4
| | | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/1f6806d...v17.10 MFH: 2017Q4 Notes: svn path=/head/; revision=451073
* multimedia/mpc-qt: update to 17.09.18Jan Beich2017-09-252-5/+5
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/485ba78...1f6806d Notes: svn path=/head/; revision=450567
* multimedia/mpc-qt: update to 17.09.12Jan Beich2017-09-112-5/+5
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/v17.09...485ba78 Notes: svn path=/head/; revision=449659
* 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
* multimedia/mpc-qt: update to 17.09Jan Beich2017-09-032-5/+4
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/af00b5b...v17.09 Notes: svn path=/head/; revision=449166
* multimedia/mpc-qt: update to 17.08.13Jan Beich2017-08-203-24/+14
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/v17.08...af00b5b Notes: svn path=/head/; revision=448425
* multimedia/mpc-qt: update to 17.08Jan Beich2017-08-132-5/+4
| | | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/ec7ef77...v17.08 Changes: https://github.com/cmdrkotori/mpc-qt/releases/tag/v17.08 Notes: svn path=/head/; revision=447880
* multimedia/mpc-qt: update to 17.07.34Jan Beich2017-08-112-10/+5
| | | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/v17.07...ec7ef77 MFH: 2017Q3 Notes: svn path=/head/; revision=447731
* multimedia/mpc-qt: fix missing icons after r443673Jan Beich2017-08-111-2/+2
| | | | Notes: svn path=/head/; revision=447730
* multimedia/mpc-qt:Carlos J. Puga Medina2017-07-192-1/+7
| | | | | | | | | | | | | | | | | | | | | | - Add patch to fix mpcwidget crash on mpv 0.26.0 multimedia/mpv: - Update mpv to 0.26.0 - Update waf to 1.9.8 using the same waf version as bootstrap.py - Update ffmpeg version required to 3.3 - Drop unnecessary CONFIGURE_ARGS options - Fix option helpers - Update WWW in pkg-descr Changelog: https://github.com/mpv-player/mpv/releases/tag/v0.26.0 Reviewed by: jbeich Approved by: jbeich (mpc-qt, maintainer) Differential Revision: https://reviews.freebsd.org/D11655 Notes: svn path=/head/; revision=446240
* multimedia/mpc-qt: switch to a nearby tagJan Beich2017-07-012-5/+5
| | | | | | | | | | The new versioning scheme is based on "git describe --tags". Changes: https://github.com/cmdrkotori/mpc-qt/compare/8835b7f...v17.07 MFH: 2017Q3 Notes: svn path=/head/; revision=444829
* multimedia/mpc-qt: update to 0.0.0.s20170630Jan Beich2017-06-302-5/+5
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/55cfb22...8835b7f Notes: svn path=/head/; revision=444779
* multimedia/mpc-qt: update to 0.0.0.s20170618Jan Beich2017-06-192-5/+5
| | | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/999d18f...55cfb22 MFH: 2017Q2 Notes: svn path=/head/; revision=443871
* multimedia/mpc-qt: update to 0.0.0.s20170616Jan Beich2017-06-162-10/+14
| | | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/508ddd0...999d18f MFH: 2017Q2 Notes: svn path=/head/; revision=443673
* Revision bump of all ports with USE_GL after consolidation of mesa-libsMatthew Rezny2017-05-231-0/+1
| | | | | | | | Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D10845 Notes: svn path=/head/; revision=441503
* multimedia/mpc-qt: update to 0.0.0.s20170422Jan Beich2017-04-262-7/+6
| | | | | | | | | | | | | And pacify stage-qa warning that appeared after r436603 Error: /usr/local/bin/mpc-qt is linked to /usr/local/lib/qt5/libQt5DBus.so.5 from devel/qt5-dbus butit is not declared as a dependency Warning: you need USE_QT5+=dbus Changes: https://github.com/cmdrkotori/mpc-qt/compare/76fd545...508ddd0 MFH: 2017Q2 Notes: svn path=/head/; revision=439430
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-0/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* multimedia/mpc-qt: update to 0.0.0.s20170412Jan Beich2017-04-132-6/+5
| | | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/3cd13a9...76fd545 MFH: 2017Q2 Notes: svn path=/head/; revision=438479
* 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
* multimedia/mpc-qt: update to 0.0.0.s20170329Jan Beich2017-03-312-5/+5
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/30b2294...3cd13a9 Notes: svn path=/head/; revision=437357
* multimedia/mpc-qt: update to 0.0.0.s20170321Jan Beich2017-03-212-5/+5
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/e9be455...30b2294 Notes: svn path=/head/; revision=436603
* multimedia/mpc-qt: update to 0.0.0.s20170312Jan Beich2017-03-122-5/+5
| | | | | | | Changes: https://github.com/cmdrkotori/mpc-qt/compare/7ffd261...e9be455 Notes: svn path=/head/; revision=435981