aboutsummaryrefslogtreecommitdiff
path: root/net-im/telepathy-qt
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* net-im/telepathy-qt: "switch" to gstreamer1Tobias C. Berner2020-09-271-2/+2
| | | | | | | | | | | | - the port was already picking up gstreamer1, as it was installed through dependencies. - this reduces the number of ports which still "seem" to use gstreamer0 by 1 Reported by: bapt Notes: svn path=/head/; revision=550240
* net-im/telepathy-qt: remove unnecessary lock on python2Tobias C. Berner2020-03-161-1/+2
| | | | | | | - switch to python3 Notes: svn path=/head/; revision=528545
* net-im/telepathy-qt: update to 0.9.8Tobias C. Berner2019-12-133-446/+440
| | | | Notes: svn path=/head/; revision=520068
* 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
* net-im/telepathy-qt: remove flavors (Qt4 deprecation)Tobias C. Berner2019-03-161-18/+6
| | | | Notes: svn path=/head/; revision=495946
* 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
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* 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-2/+4
| | | | | | | | | | | | | | 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
* net-im/telepathy-qt: fix build with GCC-based architectures of qt5 flavorTobias C. Berner2018-10-201-1/+1
| | | | | | | | PR: 232260 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Notes: svn path=/head/; revision=482603
* net-im/telepathy-qt[45]: falvorizeTobias C. Berner2018-10-074-0/+511
| | | | | | | | | | | | | | Flavorize the ports: * telepathy-qt4 -> telepathy-qt@qt4 * telepathy-qt5 -> telepathy-qt@qt5 While here, also clean up the Makefile a bit. Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D17445 Notes: svn path=/head/; revision=481446
* Remove expired ports:Rene Ladan2013-12-014-178/+0
| | | | | | | | | | | | | | | | | | | | | | 2013-12-01 x11-fm/xnc: Latest release from 2005, upstream disappeared, does not build 2013-12-01 audio/liteamp: Dead upstream since 2004, does not build with clang 2013-12-01 net-im/tapioca-qt: Unmaintained upstream since 2007, not used by anything 2013-12-01 net-im/telepathy-qt: Unmaintained upstream since 2007, use net-im/telepathy-qt4 2013-12-01 x11-toolkits/linux-f10-gtk: GTK1 is deprecated 2013-12-01 net-im/linux-ymessenger: Depends on deprecated Linux GTK1 2013-12-01 emulators/linux-pete-mesagpu: Depends on deprecated Linux GTK1 2013-12-01 emulators/linux-pete-xgl2gpu: Depends on deprecated Linux GTK1 2013-12-01 emulators/linux-peops-softgpu: Depends on deprecated Linux GTK1 2013-12-01 finance/eqonomize-kde4: No upstream releases since 2008, does not build on FreeBSD 10 and 11 2013-12-01 comms/uhso-kmod: included in base system on all supported releases 2013-12-01 deskutils/ecru: No longer maintained upstream 2013-12-01 editors/gphpedit: No longer maintaned upstream 2013-12-01 irc/inspircd12: No upstream support; known vulnerable. Please use irc/inspircd 2013-12-01 graphics/py-clutter: Broken for more than 6 month 2013-12-01 graphics/py-clutter-gtk: depends on expired graphics/py-clutter Notes: svn path=/head/; revision=335357
* Deprecate net-im/tapioca-qt and net-im/telepathy-qt.Raphael Kubo da Costa2013-11-171-0/+3
| | | | | | | | Both projects have been dead upstream since 2007, and no port depends on them. telepathy-qt is not to be confused with net-im/telepathy-qt4. Notes: svn path=/head/; revision=334127
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | net-im) Notes: svn path=/head/; revision=327756
* Add an explicit dependency on pkgconfBaptiste Daroussin2013-09-021-5/+2
| | | | Notes: svn path=/head/; revision=326038
* - 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
* - Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4Martin Wilke2012-06-061-2/+1
| | | | | | | Review by: bapt, David Naylor (kde team) Notes: svn path=/head/; revision=298557
* Remove CMAKE_USE_PTHREAD from the ports using it.Raphael Kubo da Costa2011-11-141-1/+0
| | | | | | | | | | | This setting has not had any effect since r1.13 to bsd.cmake.mk, as it was only useful when we supported FreeBSD < 7. Approved by: avilla (mentor), portmgr (miwi) Feature safe: yes Notes: svn path=/head/; revision=285744
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* Instead of only 1 LGPL license there are two namely: the 2.1 and 3 version.Koop Mast2010-06-041-1/+1
| | | | | | | | | | | So make a LGPL21 and LGPL3 value for the license framework. Replace the LGPL used in ports with LGPL21. (checked all consumers) Obtained from: http://www.gnu.org/licenses/ (Under License URL's) Notes: svn path=/head/; revision=255734
* Fix path to license fileTilman Keskinoz2010-06-011-1/+1
| | | | | | | Reported by: pointyhat Notes: svn path=/head/; revision=255435
* Add LICENSE and LICENSE_FILE to my ports.Tilman Keskinoz2010-05-301-0/+3
| | | | Notes: svn path=/head/; revision=255330
* - update to 1.4.1Dirk Meyer2010-03-281-1/+1
| | | | | | | | Reviewed by: exp8 run on pointyhat Supported by: miwi Notes: svn path=/head/; revision=251605
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with N Notes: svn path=/head/; revision=240073
* - Fix build after qt updateMartin Wilke2009-08-071-0/+1
| | | | Notes: svn path=/head/; revision=239059
* bump PORTREVISION after cmake updateMax Brazhnikov2009-03-241-1/+1
| | | | Notes: svn path=/head/; revision=230897
* Remove unneeded rundeps on qt4 buildtoolsTilman Keskinoz2008-08-011-2/+2
| | | | | | | | PR: 123362 Submitted by: Max Brazhnikov Notes: svn path=/head/; revision=217905
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-0/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* - Add common code to support for cmake based ports.Martin Wilke2008-05-271-13/+4
| | | | | | | | | | - Update devel/cmake to 2.6.0 (also fix ports/123092) - Use the new CMAKE build framework in all ports using cmake Approved by: portmgr (pav) Notes: svn path=/head/; revision=213789
* Add forgotten dependency on cmakeTilman Keskinoz2008-02-181-0/+2
| | | | | | | pointyhat to: arved Notes: svn path=/head/; revision=207550
* Add telepathy-qt, a Qt implementation of the telepathy projectTilman Keskinoz2008-02-104-0/+183
Notes: svn path=/head/; revision=206996