aboutsummaryrefslogtreecommitdiff
path: root/emulators/ppsspp-qt5
Commit message (Collapse)AuthorAgeFilesLines
* emulators/ppsspp: update to 1.12Jan Beich2021-10-061-1/+1
| | | | | | Changes: https://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.11.3...v1.12 Reported by: GitHub (watch releases)
* 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
* 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
|
* emulators/ppsspp: backport stability fixes for system ffmpegJan Beich2021-03-251-1/+1
| | | | Notes: svn path=/head/; revision=569211
* emulators/ppsspp: update to 1.10Jan Beich2020-06-271-3/+3
| | | | | | | | | | | - LIBRETRO option is now libretro-ppsspp port Changes: https://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.9.4...v1.10 Reported by: GitHub (watch releases) Notes: svn path=/head/; revision=540656
* emulators/ppsspp: use system snappy after r483177Jan Beich2020-06-271-1/+1
| | | | | | | https://github.com/hrydgard/ppsspp/commit/8ba1f049dae9 Notes: svn path=/head/; revision=540629
* emulators/ppsspp: update to 1.9.1Jan Beich2019-09-261-1/+1
| | | | | | | | | Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.8.0...v1.9.1 Reported by: GitHub (watch releases) Notes: svn path=/head/; revision=512863
* 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
* 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
* emulators/ppsspp: update to 1.7.4Jan Beich2018-11-251-1/+1
| | | | | | | | | Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.7.2...v1.7.4 MFH: 2018Q4 (bug fixes) Notes: svn path=/head/; revision=485861
* 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
* emulators/ppsspp: update to 1.7Jan Beich2018-10-271-1/+1
| | | | | | | | | Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.6.3...v1.7 MFH: 2018Q4 (many stability fixes) Notes: svn path=/head/; revision=483177
* emulators/ppsspp: advertise Vulkan supportJan Beich2018-09-081-0/+2
| | | | | | | | - Vulkan lazy bindings are always enabled, built against bundled headers - QT5 slave currently hardcodes GPUBackend::OPENGL Notes: svn path=/head/; revision=479260
* emulators/ppsspp-qt5: rebuild after r472312Jan Beich2018-06-131-1/+1
| | | | Notes: svn path=/head/; revision=472319
* emulators/ppsspp: update to 1.6.0Jan Beich2018-05-261-1/+1
| | | | | | | | | | | - Vulkan support is always built - Install libretro core by default Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.5.4...v1.6.0 Notes: svn path=/head/; revision=470890
* multimedia/ffmpeg: update to 4.0Jan Beich2018-05-021-1/+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
* emulators/ppsspp: update to 1.5.1Jan Beich2017-11-291-1/+1
| | | | | | | | Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/compare/v1.4.2...v1.5.1 Notes: svn path=/head/; revision=455134
* 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
* emulators/ppsspp-qt5: rebuild after r452123Jan Beich2017-10-151-1/+1
| | | | Notes: svn path=/head/; revision=452124
* Bump PORTREVISION in ports depending on archivers/libzip.Raphael Kubo da Costa2017-09-271-1/+1
| | | | | | | | | | | libzip was updated to 1.3.0 in r450774, and its SOVERSION went from .4 to .5 after the removal of zip_archive_set_tempdir(). All dependent ports continue to build fine without that symbol. PR: 222638 Notes: svn path=/head/; revision=450775
* emulators/ppsspp: update to 1.4Jan Beich2017-05-231-1/+1
| | | | | | | | | Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/releases/tag/v1.4.1 MFH: 2017Q2 Notes: svn path=/head/; revision=441519
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* emulators/ppsspp: update to 1.4Jan Beich2017-03-311-1/+1
| | | | | | | | Changes: http://ppsspp.org/#news Changes: https://github.com/hrydgard/ppsspp/releases/tag/v1.4 Notes: svn path=/head/; revision=437353
* 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
* emulators/ppsspp: unbreak _OFF helpers after r422825Jan Beich2016-10-101-3/+0
| | | | Notes: svn path=/head/; revision=423674
* emulators/ppsspp: hide QT* options in master portJan Beich2016-09-291-1/+0
| | | | | | | Pointyhat to: jbeich (r422825) Notes: svn path=/head/; revision=422899
* emulators/ppsspp: enslave GUI optionsJan Beich2016-09-271-0/+14
Catering package-only users that want Qt4 flavor or just SDL UI. COMMENT and pkg-descr (both plural) can be improved in future. Notes: svn path=/head/; revision=422825