aboutsummaryrefslogtreecommitdiff
path: root/multimedia/minitube
Commit message (Collapse)AuthorAgeFilesLines
* multimedia/minitube: Update 3.9 -> 3.9.1Yuri Victorovich2021-09-212-13/+13
|
* multimedia/minitube: Should be unbroken because bug#257978 is now fixed.Yuri Victorovich2021-08-211-2/+0
|
* multimedia/minitube: Broken on 14 due to a clang crash.Yuri Victorovich2021-08-211-0/+2
|
* multimedia/minitube: Update 3.8.2 -> 3.9Yuri Victorovich2021-06-232-20/+22
| | | | Reported by: portscout
* 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
* multimedia/minitube: Update 3.8 -> 3.8.2Yuri Victorovich2021-05-072-7/+7
| | | | Reported by: portscout
* 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/minitube: Update 3.6.7-1 -> 3.8Yuri Victorovich2021-02-222-5/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=566268
* multimedia/minitube: Update 3.6.7 -> 3.6.7-1Yuri Victorovich2021-02-132-10/+11
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=565151
* multimedia/minitube: Update 3.6.6 -> 3.6.7Yuri Victorovich2020-12-032-16/+16
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=556931
* multimedia/minitube: Update 3.6.5 -> 3.6.6Yuri Victorovich2020-11-232-10/+10
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=556084
* multimedia/minitube: Update 3.6.4 -> 3.6.5Yuri Victorovich2020-11-052-10/+13
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=554149
* multimedia/minitube: Update 3.6.3 -> 3.6.4Yuri Victorovich2020-10-242-7/+7
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=553229
* multimedia/minitube: Update 3.5 -> 3.6.3; Take maintainershipYuri Victorovich2020-10-193-16/+20
| | | | Notes: svn path=/head/; revision=552714
* multimedia/minitube: update to 3.5Fernando Apesteguía2020-08-106-25/+33
| | | | | | | A patch to update to 3.4.2 existed in PR #247246 Notes: svn path=/head/; revision=544633
* www/minitube: Fix phonon backend names in pkg-messageTobias Kortkamp2019-11-082-7/+4
| | | | | | | | Also do not print the pkg-message before the build. It was bad before but is very confusing now that the pkg-message is in UCL. Notes: svn path=/head/; revision=517032
* 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
* onvert to UCL & cleanup pkg-message (categories l-m)Mathieu Arnold2019-08-131-0/+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/phonon, multimedia/phonon-gestreamer, ↵Tobias C. Berner2019-03-161-1/+1
| | | | | | | multimedia/phonon-designerplugin: remove flavorse (Qt4 deprecation) Notes: svn path=/head/; revision=495961
* Fix build on gcc-based architectures:Mark Linimon2019-03-121-1/+1
| | | | | | | | | cc1plus: error: unrecognized command line option "-std=gnu++11" Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=495422
* 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
* Merge lang/qt5-qml and x11-toolkits/qt5-quick into x11-toolkits/qt5-declarativeTobias C. Berner2018-11-041-1/+1
| | | | | | | | | | | | - There was no obvious reason to split these ports, and it makes porting simpler; the set of ports using either mostly coincided. Exp-run by: antoine PR: 223687 PR: 232751 Notes: svn path=/head/; revision=484140
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-3/+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
* multimedia/*phonon*: update and flavorize with @qt4/@qt5Tobias C. Berner2018-06-211-0/+1
| | | | | | | | Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D14632 Notes: svn path=/head/; revision=472983
* multimedia/minitube: Update to 2.9Yuri Victorovich2018-02-164-8/+17
| | | | | | | | | | | | Additional port changes: * Replaced with DISTVERSION * Removed INSTALLS_ICONS (not a gtk app) * Added the patch with the workaround for the build failure Approved by: tcberner (mentor, implicit) Notes: svn path=/head/; revision=461987
* Update to upstream version 2.7, update message on API keysThomas Zander2017-06-044-10/+10
| | | | | | | | PR: 219621 Submitted by: vidar@karlsen.tech Notes: svn path=/head/; revision=442542
* 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
* Update multimedia/minitube to 2.6Tobias C. Berner2017-05-152-5/+5
| | | | | | | | | Changes: http://flavio.tordini.org/minitube-2-6 Approved by: rakuco (mentor, implicit) Notes: svn path=/head/; revision=440964
* Update to 2.5.2Jason E. Hale2016-11-184-7/+19
| | | | | | | Note: This release uses Qt5 now instead of Qt4 Notes: svn path=/head/; revision=426325
* - Add LICENSEDmitry Marakasov2016-11-071-5/+8
| | | | | | | | | - Pet portlint - Cosmetic fixes - Add missing qtcore dependency Notes: svn path=/head/; revision=425614
* Reassign makc's ports back to the pool.Raphael Kubo da Costa2016-10-201-1/+1
| | | | | | | | | | | | See "Maintainer Reset" in https://www.freebsd.org/portmgr/policies_contributors.html. makc's last commit was in March 31st (r412218), and his ports have been timing out since at least July (r418155). I also emailed him 2 weeks ago and have received no response so far. Notes: svn path=/head/; revision=424339
* Convert my ports to new options helpersMax Brazhnikov2015-08-251-6/+4
| | | | Notes: svn path=/head/; revision=395231
* multimedia/minitube:Max Brazhnikov2015-07-173-7/+26
| | | | | | | | - Update to 2.4 with support for the latest YouTube API - Remove INSTALLS_ICONS needless for Qt/KDE ports Notes: svn path=/head/; revision=392335
* multimedia/minitube: remove BOM to fix build on 8.4-RELEASEMax Brazhnikov2015-03-281-0/+3
| | | | Notes: svn path=/head/; revision=382531
* multimedia/minitube:Max Brazhnikov2015-03-084-34/+20
| | | | | | | | | - Update to 2.3 - Don't force dependency on Phonon GStreamer backend - Remove stale patch Notes: svn path=/head/; revision=380786
* - Switch my ports to USE_QT4=linguisttools_build and adjust Qt componentsMax Brazhnikov2015-02-241-6/+1
| | | | | | | | - Use LUPDATE/LRELEASE provided by bsd.qt.mk - Drop needless stripping Notes: svn path=/head/; revision=379845
* - Drop @dirrm* from and add empty directories to pkg-plistsDmitry Marakasov2015-02-011-22/+0
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=378270
* Update the default version of GCC in the Ports Collection from GCC 4.7.4Gerald Pfeifer2014-09-101-1/+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
* - Bump PORTREVISION after KDE4_PREFIX changeMax Brazhnikov2014-02-181-0/+1
| | | | Notes: svn path=/head/; revision=344898
* - Clean up after conversion to USES=qmakeMax Brazhnikov2013-11-261-10/+4
| | | | | | | - Use options helpels Notes: svn path=/head/; revision=334926
* - Remove now needless qmake_build from USE_QT4Max Brazhnikov2013-11-211-3/+2
| | | | | | | | - Get rid of QMAKEFLAGS - Convert to USES=dos2unix Notes: svn path=/head/; revision=334497
* - Remove manual creation and removal of share/applications, as it's now in ↵Dmitry Marakasov2013-10-221-1/+0
| | | | | | | | | the mtree (categories starting with m) Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=331270
* - Convert to USES= qmakeMax Brazhnikov2013-10-091-8/+4
| | | | | | | | | | - Bring stage support - Adjust DESKTOP_ENTRIES - Use options helpers - Use new LIB_DEPENDS syntax Notes: svn path=/head/; revision=329880
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | multimedia) Notes: svn path=/head/; revision=327747
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* - Add global options (DOCS, NLS, etc) to the OPTIONS_DEFINE and partly ↵Max Brazhnikov2013-05-122-3/+5
| | | | | | | | | | | | | | revert r315222 [1] - Convert WITH_DEBUG to new options framework - Trim Makefile header - Adjust COMMENTs - Reformat/update description [1] See follow-up discussion: http://lists.freebsd.org/pipermail/svn-ports-head/2013-March/016094.html Notes: svn path=/head/; revision=317947
* - Add global options (DOCS, NLS, etc) to the OPTIONS_DEFINE if it'sMax Brazhnikov2013-03-251-2/+0
| | | | | | | | already defined - Remove OPTIONS_DEFINE, if it contains only global options Notes: svn path=/head/; revision=315222
* Update to 2.0Max Brazhnikov2013-02-254-13/+32
| | | | Notes: svn path=/head/; revision=312931