aboutsummaryrefslogtreecommitdiff
path: root/multimedia/smplayer
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* multimedia/smplayer: Update to 21.1.0Tobias C. Berner2021-02-132-4/+4
| | | | | | | | | | | Changelog: https://www.smplayer.info/en/changes PR: 253400 Submitted by: VVD <vvd@unislabs.com> (maintainer) Notes: svn path=/head/; revision=565110
* multimedia/smplayer: make WWW porters-handbook compliantTobias C. Berner2020-09-261-1/+1
| | | | | | | Reported by: jbeich Notes: svn path=/head/; revision=550197
* multimedia/smplayer: update to 20.6.0Tobias C. Berner2020-09-264-5/+6
| | | | | | | | | | | | | | | | | | | | | Version 20.6 * The internal YouTube code has been removed. Now SMPlayer uses an external application to get the video URLs. * The shuffle option in the playlist does shuffle the items of the playlist. Version 20.4.2 * Possibility to enter the opensubtitles.org credentials, which prevents a login error. * Now it's possible to search for shortcuts in Preferences -> Keyboard. * Support for mpv 0.32. * Fix for YouTube. Changelog: https://www.smplayer.info/en/changes PR: 249918 Submitted by: VVD <vvd@unislabs.com> (maintainer) Notes: svn path=/head/; revision=550195
* multimedia/smplayer: give maintainership to vvd@unislabs.comTobias C. Berner2020-09-261-1/+1
| | | | | | | Thanks, have fun with it :) Notes: svn path=/head/; revision=550191
* - Switch to share/manDmitry Marakasov2020-05-042-2/+1
| | | | Notes: svn path=/head/; revision=533908
* multimedia/smplayer: update to 19.10.2Fernando Apesteguía2019-12-262-7/+8
| | | | | | | | | | | | | | From ChangeLog: https://app.assembla.com/spaces/smplayer/subversion/source/HEAD/smplayer/trunk/Changelog * Try to prevent the player window to be larger than the desktop after a resize. * Fix compiling the web server on 32 bit with gcc 9.2.0. PR: 242870 Submitted by: vvd@unislabs.com Notes: svn path=/head/; revision=520951
* 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
* Clean up remaining unused TOOLKIT_DESCTobias Kortkamp2019-10-191-1/+0
| | | | Notes: svn path=/head/; revision=514789
* multimedia/smplayer: upgrade 18.10.0 -> 19.5.0Kurt Jaeger2019-09-192-5/+4
| | | | | | | | | | | - 18.10.0 failed when invoking mplayer PR: 238648 Reported by: Ronald F. Guilmette <rfg-freebsd@tristatelogic.com> Relnotes: https://www.smplayer.info/forum/viewtopic.php?f=3&t=8889 Notes: svn path=/head/; revision=512364
* onvert to UCL & cleanup pkg-message (categories l-m)Mathieu Arnold2019-08-131-4/+6
| | | | Notes: svn path=/head/; revision=508882
* 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
* multimedia/smplayer: reset maintainer who no longer uses FreeBSDRene Ladan2019-06-301-1/+1
| | | | | | | Submitted by: rgrimes via forwards Notes: svn path=/head/; revision=505428
* multimedia/smplayer: remove QT4/QT5 options (Qt4 deprecation)Tobias C. Berner2019-03-161-19/+5
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=495934
* multimedia/smplayer: update 18.9.0 -> 18.10.0Kurt Jaeger2019-01-252-5/+4
| | | | | | | | | | | | - The internal code for YouTube now supports resolutions up to 4K PR: 234854 Submitted by: chitty_cloud@me.com Approved by: kikadf.01@gmail.com (maintainer timeout) Relnotes: https://www.smplayer.info/en/changes Notes: svn path=/head/; revision=491201
* 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-0/+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
* 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
* USES=compiler:c++11-lang is necessary to fix build on GCC-basedMark Linimon2018-11-111-1/+2
| | | | | | | | | | | architectures. PR: 232834 Submitted by: Piotr Kubaj Approved by: maintainer Notes: svn path=/head/; revision=484657
* Update to upstream release 18.9.0, new maintainerThomas Zander2018-10-212-7/+7
| | | | | | | | | | | | | | | | Details: - Update to upstream release 18.9.0 - New maintainer: kikadf.01@gmail.com - Default toolkit is now QT5 While on it: - Pet portlint / check-sanity PR: 231856 Submitted by: kikadf.01@gmail.com (new maintainer) Notes: svn path=/head/; revision=482712
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-4/+6
| | | | | | | | | | | | | | | | | | 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
* Reset maintainer (3+ months of inactivity).Emanuel Haupt2018-06-261-1/+1
| | | | | | | Discussed with: portmgr (adamw, mat) Notes: svn path=/head/; revision=473398
* - Update to version 18.1.0Pawel Pekala2018-02-035-11/+18
| | | | | | | | | | | | - Only install documentation when DOCS=on - Update homepage PR: 225272 Submitted by: myself Approved by: maintainer timeout Notes: svn path=/head/; revision=460832
* - Provide a choice between Qt versions (4/5).Pawel Pekala2018-01-172-19/+51
| | | | | | | | | | | | | | - Add possibility to use MPV as a backend; disable support in code when backend is not selected (obsolete mplayer2 support is always disabled). - Add options for additional skins / themes - Convert to options helpers PR: 217546 Submitted by: avos Approved by: maintainer timeout Notes: svn path=/head/; revision=459273
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-0/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* - Update to 17.1.0, please seeRusmir Dusko2017-01-202-4/+4
| | | | | | | /usr/local/share/doc/smplayer/Changelog Notes: svn path=/head/; revision=431964
* - Update to 16.11.0, please seeRusmir Dusko2016-11-093-5/+6
| | | | | | | /usr/local/share/doc/smplayer/Changelog Notes: svn path=/head/; revision=425797
* - Update to 16.9.0, please seeRusmir Dusko2016-09-122-4/+4
| | | | | | | /usr/local/share/doc/smplayer/Changelog Notes: svn path=/head/; revision=421911
* - Update to 16.8.0, please seeRusmir Dusko2016-08-042-3/+4
| | | | | | | /usr/local/share/doc/smplayer/Changelog Notes: svn path=/head/; revision=419657
* - Update to 16.7.0, please seeRusmir Dusko2016-07-032-4/+3
| | | | | | | /usr/local/share/doc/smplayer/Changelog Notes: svn path=/head/; revision=417966
* - Update to 16.6.0, please seeRusmir Dusko2016-06-102-3/+4
| | | | | | | /usr/local/share/doc/smplayer/Changelog Notes: svn path=/head/; revision=416681
* multimedia/smplayer: change from qt4-linguist to qt4-linguisttoolsKurt Jaeger2016-05-292-6/+6
| | | | | | | | | PR: 201475 Submitted by: <Andriy Voskoboinyk> s3erios@gmail.com Approved by: nemysis (maintainer timeout) Notes: svn path=/head/; revision=416096
* - Update to 16.4.0, please seeRusmir Dusko2016-05-033-3/+6
| | | | | | | /usr/local/share/doc/smplayer/Changelog Notes: svn path=/head/; revision=414522
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* - Update to 16.1.0, please seeRusmir Dusko2016-01-182-3/+3
| | | | | | | /usr/local/share/doc/smplayer/Changelog Notes: svn path=/head/; revision=406615
* Convert LICENSE= "GPLxx # or later" to "GPLxx+"Dmitry Marakasov2016-01-121-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=405891
* - Update to 15.11.0, please seeRusmir Dusko2015-11-302-3/+3
| | | | | | | /usr/local/share/doc/smplayer/Changelog Notes: svn path=/head/; revision=402665
* - Update to 15.9.0, please seeRusmir Dusko2015-09-292-7/+6
| | | | | | | | | /usr/local/share/doc/smplayer/Changelog - Change PORTSCOUT Notes: svn path=/head/; revision=398192
* Update to unstable 14.9.0.6994, announce message is here:Rusmir Dusko2015-09-053-9/+10
| | | | | | | | | | | | | http://sourceforge.net/projects/smplayer/files/Unstable/releases/ - Add Notes_about_mpv.txt to DOCS - Change PORTSCOUT PR: 199279 Submitted by: sasamotikomi@gmail.com Notes: svn path=/head/; revision=396172
* - Change PORTSCOUTRusmir Dusko2015-06-251-1/+1
| | | | Notes: svn path=/head/; revision=390584
* - Add CPE infoDmitry Marakasov2015-05-161-1/+2
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=386568
* - Clarify LICENSEDmitry Marakasov2015-01-132-6/+2
| | | | | | | | | | | | - Add LICENSE_FILE - Remove @dirrm* from pkg-plist PR: 196216 Submitted by: amdmi3 Approved by: maintainer timeout (nemysis) Notes: svn path=/head/; revision=376934
* 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
* - Update to 14.9.0, announce message:Rusmir Dusko2014-09-072-4/+4
| | | | | | | | | | | | | * Fix for Youtube. * New option to shut down the computer when playback has finished. * The themes and skin icons are loaded from resource files (*.rcc). * New fix for searching subtitles from opensubtitles.org that should return more results. - Add dbus QT4 dependency Notes: svn path=/head/; revision=367542
* - Set PORTSCOUT, Do not use unstable versionsRusmir Dusko2014-09-051-0/+3
| | | | Notes: svn path=/head/; revision=367346
* - Update to 14.3.0, announce message is here:Rusmir Dusko2014-04-014-37/+29
| | | | | | | | | | | | | http://sourceforge.net/projects/smplayer/files/SMPlayer/14.3.0/ - Simplify dependencies - Use tar:bzip2 instead of USE_BZIP2=yes - Add DEBUG Option - Change patch and recreate with make makepatch, remove for deinstallation Notes: svn path=/head/; revision=349872
* - Take maintainershipRusmir Dusko2014-01-232-14/+15
| | | | | | | | | | | | | - Add licenses (GPLv2) - Add USES desktop-file-utils, dos2unix and DOS2UNIX_REGEX - Remove not needed DOCS - Fix typo (tabulator) - Change pkg-descr Approved by: maintainer (private email) Notes: svn path=/head/; revision=340816
* - Bump PORTREVISION for dependency changeRusmir Dusko2014-01-222-3/+16
| | | | | | | | | | | | | | - Add dependency for multimedia/smplayer-skins - Add DOCS Option - Add pkg-message about multimedia/smtube - Strip executable PR: ports/186018 Submitted by: nemysis (self) Approved by: maintainer Notes: svn path=/head/; revision=340732
* - Convert to USES=qmakeMax Brazhnikov2014-01-061-4/+5
| | | | | | | Approved by: maintainer Notes: svn path=/head/; revision=338904
* - Pass QMAKE_ARGS to qmakeMax Brazhnikov2013-11-222-10/+7
| | | | | | | Approved by: portmgr (blanket approval) Notes: svn path=/head/; revision=334587