aboutsummaryrefslogtreecommitdiff
path: root/multimedia/phonon
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Add USES={gl,gnome,mate,sdl,xorg} missed in the last roundTobias Kortkamp2019-11-141-0/+1
| | | | Notes: svn path=/head/; revision=517560
* multimedia/phonon: update to 4.11.1Tobias C. Berner2019-10-183-115/+4
| | | | | | | | | - multimedia/phonon -> 4.11.1 - multimedia/phonon-designerplugin -> 4.11.1 - multimedia/phonon-vlc -> 0.11.1 Notes: svn path=/head/; revision=514715
* multimedia/phonon: update to 4.11.0Tobias C. Berner2019-08-294-50/+162
| | | | | | | | | - update backends: * multimedia/phonon-gstramer to 4.10.0 * multimedia/phonon-vlc to 0.11.0 Notes: svn path=/head/; revision=510138
* 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/phonon, multimedia/phonon-gestreamer, ↵Tobias C. Berner2019-03-163-232/+7
| | | | | | | multimedia/phonon-designerplugin: remove flavorse (Qt4 deprecation) Notes: svn path=/head/; revision=495961
* Update Qt5 to 5.12.1Tobias C. Berner2019-02-122-1/+35
| | | | | | | | | | | | | | | | | | Release announcement: https://blog.qt.io/blog/2019/02/01/qt-5-12-1-released/ Changelog: https://wiki.qt.io/Qt_5.12.1_Change_Files - A change was required to qt-dist.mk to always pass LOCALBASE to qmake, as Qt5 has been installed to a prefix for some time now, there should not be any harm in that, with respect to it picking up installed versions of itself during build. PR: 235622 Exp-run by: antoine Notes: svn path=/head/; revision=492793
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-0/+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
* multimedia/phonon: update to 4.10.2Tobias C. Berner2019-01-102-5/+4
| | | | | | | | | - multimedia/phonon to 4.10.2 - multimedia/phonon-designerplugin to 4.10.2 - multimedia/phonon-vlc to 0.10.2 Notes: svn path=/head/; revision=489898
* multimedia/phonon: fix CMAKE_OFF lineTobias C. Berner2019-01-101-1/+1
| | | | Notes: svn path=/head/; revision=489894
* multimedia/phonon*@qt4: fix automoc4 depencency after r488807Tobias C. Berner2019-01-011-1/+1
| | | | Notes: svn path=/head/; revision=488883
* multimedia/phonon@qt4: directly build depend on devel/automoc4 after r488807Tobias C. Berner2019-01-011-2/+2
| | | | | | | MFH: 2019Q1 Notes: svn path=/head/; revision=488881
* Use regular DEPRECATED and EXPIRATION_DATE variables in an "if FLAVOR" blockRene Ladan2018-12-161-3/+2
| | | | | | | | | | instead of flavoring the variables themselves. This caused too much hassle for Tools/scripts/rmport. Discussed with: tcberner Notes: svn path=/head/; revision=487601
* 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
* Mark QT4 ports/functionality for removal on 2019-03-15Rene Ladan2018-12-021-1/+5
| | | | | | | | | | | | | | 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
* Fix build on gcc-based archs.Mark Linimon2018-11-021-1/+1
| | | | | | | Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=483765
* - Fix LICENSEDmitry Marakasov2018-10-052-2/+3
| | | | | | | | | | - Add LICENSE_FILE - Update WWW Approved by: portmgr blanket Notes: svn path=/head/; revision=481267
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-4/+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-215-25/+229
| | | | | | | | Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D14632 Notes: svn path=/head/; revision=472983
* 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 phonon to 4.9.1Tobias C. Berner2017-01-262-5/+5
| | | | | | | | | | | | * https://community.kde.org/Phonon/Releases/Core * The backend have not [yet] been releaesed. Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D9335 Notes: svn path=/head/; revision=432527
* Get rid of QT_PREFIX in favour of PREFIX.Tobias C. Berner2016-12-181-7/+7
| | | | | | | | | | | QT_PREFIX was a remnant of a bygone time. Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D8825 Notes: svn path=/head/; revision=428889
* Stop exporting QT_BINDIR and QT_LIBDIR to PLIST_SUB.Tobias C. Berner2016-11-291-4/+4
| | | | | | | | | | | | | | | As at the moment QT_BINDIR and QT_LIBDIR are 'bin' respectively 'lib' depending on the Qt version these subs ended up at many wrong places in plists. So only export it if QT_DIST is set. PR: 210227 Reviewed by: mat, rakuco Approved by: portmgr (mat), rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D8378 Notes: svn path=/head/; revision=427356
* Update Phonon to 4.9.0.Raphael Kubo da Costa2016-09-043-5/+11
| | | | | | | | | | | | | | | | | | | | Release notes: - https://community.kde.org/Phonon/Releases/Core/4.9.0 - https://community.kde.org/Phonon/Releases/GStreamer/4.9.0 - https://community.kde.org/Phonon/Releases/VLC/0.9.0 This release fixes the build with the upcoming Qt 5.6, which was failing like this: /usr/bin/c++ -O2 -pipe -fstack-protector -fno-strict-aliasing -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wformat-security -Woverloaded-virtual -fno-common -fvisibility=hidden -Werror=return-type -fvisibility-inlines-hidden -Wno-return-type-c-linkage CMakeFiles/cmTC_08ed6.dir/check_qt_visibility.cpp.o -o cmTC_08ed6 CMakeFiles/cmTC_08ed6.dir/check_qt_visibility.cpp.o:(.qtversion[qt_version_tag]+0x0): undefined reference to `qt_version_tag' Most of the work was done by tcberner@. PR: 211916 Notes: svn path=/head/; revision=421340
* Switch to USES=pathfix.Raphael Kubo da Costa2016-09-042-12/+1
| | | | Notes: svn path=/head/; revision=421324
* Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks andTobias C. Berner2016-08-241-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plasma5 ports At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When working on the ports for KDE Frameworks and Plasma5 it seemed to be more reasonable to create a new kde.mk instead of adding an bsd.kde5.mk. The kde.mk in this review is a stripped down version of the one we are using in the KDE Test repositories plasma5 branch [1] to only contain the parts relevant to the current KDE4 ports in the portstree [2]. Changes to the KDE Ports needed by this: Replace USE_KDE4 by USE_KDE [3] Add USES=kde:4 [4] [1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk [2] The version in the plasma5 branch also handles frameworks/plasma5 and handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt Ports -- I chose to leave this out for now, as the diff is already large enough. [3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we want is already specified as argument to kde:<arg> [4] For KDE Frameworks and Plasma5 ports this would be kde:5 PR: 210667 Approved by: portmgr, mat (mentor), rakuco (mentor) Reviewed by: mat, rakuco Differential Revision: https://reviews.freebsd.org/D6961 Notes: svn path=/head/; revision=420774
* Remove expired misc/kdehier4 and update all of its consumers to not ↵Rene Ladan2016-05-251-1/+1
| | | | | | | | | | | | | | | | reference it any longer. This is a no-op because KDE4_PREFIX is equal to LOCALBASE Fix up properties for misc/kde4-l10n/files/bsd.l10n.mk to make svn happy. PR: 209014 (partial) Submitted by: myself Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D6542 Notes: svn path=/head/; revision=415864
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* Update to 4.8.3.Raphael Kubo da Costa2014-12-263-40/+4
| | | | Notes: svn path=/head/; revision=375654
* Add patch sent upstream to export the right symbols in ObjectDescriptionModel.Raphael Kubo da Costa2014-10-192-0/+36
| | | | | | | | | | We basically need to revert a workaround inherited from a Qt commit from 2010 for a clang bug that has been fixed for many years. This workaround coupled with proper support for -fvisibility=hidden I added to Phonon a while ago was causing build problems in misc/qt4-qtdemo. Notes: svn path=/head/; revision=371209
* Merge from KDE/FreeBSD in preparation for KDE SC 4.14:Max Brazhnikov2014-10-193-24/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | common changes: - don't use deprecated USE_KDE4=kdehier - drop deprecated @dirrmtry and use absolute path instead of @cwd databases/akonadi: - Update to 1.13.0 - add upstream patch to really avoid building Akonadi's unit tests devel/grantlee: - update to 0.5.1 devel/libkgapi: - update to 2.2.0 devel/libkolab: - update to 0.5.3 multimedia/phonon and multimedia/phonon-designerplugin: - update to 4.8.1 multimedia/phonon-gstreamer: - update to 4.8.0 - switch from GStreamer 0.10.x to 1.x multimedia/phonon-vlc: - update to 0.8.0 Notes: svn path=/head/; revision=371190
* 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 4.7.2.Raphael Kubo da Costa2014-07-282-4/+3
| | | | | | | | | | | | | | | | This is a minor bug fix release: * Fix CMake 3 compatibility by synchronizing the FindQt4.cmake module from kdelibs git. * Prevent possible internal infinite loop call chains when trying to handle backend construction in simulation mode (i.e. without actual backend being installed on the system). * When not building with PHONON_INSTALL_QT_EXTENSIONS_INTO_SYSTEM_QT, make sure that the relative Qt paths are set according to whether the build is meant for Qt4 or 5. Previously this would always install to a path for qt5. Notes: svn path=/head/; revision=363240
* Switch from USE_XZ=yes to USES=tar:xz.Raphael Kubo da Costa2014-06-171-2/+1
| | | | | | | | PR: 191126 Submitted by: venture37@geeklan.co.uk Notes: svn path=/head/; revision=358185
* - Bump PORTREVISION after KDE4_PREFIX changeMax Brazhnikov2014-02-181-0/+1
| | | | Notes: svn path=/head/; revision=344898
* - Update Phonon ports to 4.7.1, vlc backend to 0.7.1Max Brazhnikov2014-01-223-13/+8
| | | | | | | | | - Convert LIB_DEPENDS to new style - Drop ipv6 from CATEGORIES - Remove ancient CONFLICTS and now useless LATEST_LINK Notes: svn path=/head/; revision=340692
* - Replace QT_.*_REL with QT_.* in PLIST_SUB.Alberto Villa2013-11-171-8/+8
| | | | | | | | | - Adapt plists. With hat on: kde Notes: svn path=/head/; revision=334045
* - Fix plist when WITH_DEBUG is set.Alberto Villa2013-11-132-13/+10
| | | | | | | | | - Add LICENSE. - Use LIB_DEPENDS new format. - Use OPTIONS helpers. Notes: svn path=/head/; revision=333638
* Update to 4.7.0.Raphael Kubo da Costa2013-11-104-15/+17
| | | | | | | | | Get rid of the sed calls in the Makefile I abhor: the first one has been replaced with an actual patch in files/ now that the file being patched has changed, and the second one is not necessary anymore. Notes: svn path=/head/; revision=333437
* - Explicitly depend on qt4-corelib, which was otherwise pulled indirectly byRaphael Kubo da Costa2013-10-151-8/+8
| | | | | | | | | | | the other Qt dependencies. - Support staging. Commits by makc@ and Schaich Alonso <alonsoschaich@fastmail.fm>, pulled from our area51 repository. Notes: svn path=/head/; revision=330416
* 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
* Remove WITH_QT_PHONON check, qt4-phonon was removed in r313054.Raphael Kubo da Costa2013-07-021-4/+0
| | | | Notes: svn path=/head/; revision=322187
* - convert USE_CMAKE to USESMax Brazhnikov2013-03-221-1/+1
| | | | | | | | | | - while here clean up some ports from CMAKE_VERBOSE, which is intended for users Approved by: portmgr (miwi) Notes: svn path=/head/; revision=314960
* Merge from area51 repository:Max Brazhnikov2013-02-043-27/+9
| | | | | | | | - Trip Makefile header - Convert to new options framework / rename option Notes: svn path=/head/; revision=311634
* - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4Martin Wilke2012-06-061-3/+2
| | | | | | | Review by: bapt, David Naylor (kde team) Notes: svn path=/head/; revision=298557
* - update png to 1.5.10Dirk Meyer2012-06-011-0/+1
| | | | Notes: svn path=/head/; revision=297915
* Update KDE related ports:Max Brazhnikov2012-05-256-76/+44
| | | | | | | | | | | | | databases/akonadi to 1.7.2 devel/libdbusmenu-qt to 0.9.2 devel/qtscriptgenerator to 0.2.0 multimedia/phonon to 4.6.0 multimedia/phonon-gstreamer to 4.6.0 multimedia/phonon-vlc to 0.5.0 sysutils/qzeitgeist to 0.8.0 Notes: svn path=/head/; revision=297370
* Add my upstream commit 353bf15.Raphael Kubo da Costa2011-11-151-0/+30
| | | | | | | | | | | This should fix a warning (and, in bsam's case, an error) about a wrong variable expansion in an if clause in CMake. Approved by: avilla (mentor) Feature safe: yes Notes: svn path=/head/; revision=285809