aboutsummaryrefslogtreecommitdiff
path: root/polish/kadu
Commit message (Collapse)AuthorAgeFilesLines
* Chase libsndfile 1.0.30 update.Thomas Zander2020-10-011-1/+1
| | | | | | | | | Details: - Missing symbol sf_version_string, not auto-resolved by pkg + rebuild. - Bump PORTREVISION for consumers. Notes: svn path=/head/; revision=550824
* polish/kadu: prepare for Qt5-5.15Tobias C. Berner2020-05-211-0/+10
| | | | Notes: svn path=/head/; revision=536091
* net-im/qxmpp-qt5: update to 1.3.0Tobias C. Berner2020-04-071-1/+1
| | | | | | | | Changelog: https://github.com/qxmpp-project/qxmpp/releases/tag/v1.3.0 Notes: svn path=/head/; revision=531023
* net-im/qxmpp-qt5: update to 1.2.1Tobias C. Berner2020-04-051-1/+1
| | | | Notes: svn path=/head/; revision=530754
* devel/qca: update to 2.3Tobias C. Berner2020-03-211-3/+2
| | | | | | | | | | | | | | | | | | | | - qca-2.3 drop support for OSSL<1.1 - copy devel/qca to devel/qca-legacy which is held at the current version - update devel/qca to 2.3 - Add Uses/qca.mk which handles dependency on either of the ports depending on the FreeBSD version Users on FreeBSD11 must therefore change their pkg orign à la: pkg set -o devel/qca:devel/qca-legacy PR: 244682 Exp-run by: antoine Reviewed by: arrowd Differential Revision: https://reviews.freebsd.org/D24042 Notes: svn path=/head/; revision=528829
* net-im/qxmpp-qt5: update to 1.2.0Tobias C. Berner2020-02-071-1/+1
| | | | | | | | Changelog: https://github.com/qxmpp-project/qxmpp/blob/master/CHANGELOG.md Notes: svn path=/head/; revision=525503
* Add USES=xorg USES=gl, ports categories pNiclas Zeising2019-11-061-2/+2
| | | | | | | | Add USES=xorg and USES=gl to ports in categories starting with 'p' While here, try to sprinkle other USES (mostly gnome and sdl) as needed. Notes: svn path=/head/; revision=516924
* net-im/qxmpp-qt5: update to 1.1.0Tobias C. Berner2019-10-291-1/+1
| | | | Notes: svn path=/head/; revision=516029
* net-im/qxmpp-qt5: update to 1.0.1Tobias C. Berner2019-10-171-1/+1
| | | | Notes: svn path=/head/; revision=514652
* 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/qxmpp-qt5: update to 1.0.0Tobias C. Berner2019-07-101-1/+1
| | | | | | | | - give maintainership to kde@ - bump consumers Notes: svn path=/head/; revision=506377
* Update devel/readline to 8.0Sunpoet Po-Chuan Hsieh2019-04-091-1/+1
| | | | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://tiswww.case.edu/php/chet/readline/CHANGES PR: 236156 Exp-run by: antoine Notes: svn path=/head/; revision=498476
* Update CMake to latest release, 3.14.1Adriaan de Groot2019-04-054-0/+44
| | | | | | | | | | | | | | | | | | Changelog: https://cmake.org/cmake/help/v3.14/release/3.14.html Local patches: fixes for Boost, Python, and OpenMP Affected ports: - opencpn, hugin needed help in finding wx - kadu is over-enthusiastic in finding non-existent X11 components - xlife++ does weird things in parsing help output from cmake Thanks antoine@ for multiple exp-runs. Thanks tcberner@ for much prep-work. PR: 236534 223678 227428 Notes: svn path=/head/; revision=497948
* dns/libidn: Update to 1.35Yuri Victorovich2019-04-021-1/+1
| | | | | | | | | | Bump 48 ports. Previous update to 1.34 broke jabberd. PR: 228048 Notes: svn path=/head/; revision=497546
* devel/qca: remove flavors (Qt4 deprecation)Tobias C. Berner2019-03-161-2/+2
| | | | Notes: svn path=/head/; revision=495954
* 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
* kadu-core/plugin/dependency-graph/plugin-dependency-graph-builder.hMark Linimon2019-01-161-0/+10
| | | | | | | | | | needs to include <functional> to fix build on GCC-based architectures. PR: 234948 Submitted by: Piotr Kubaj Notes: svn path=/head/; revision=490452
* 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
* 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
* Merge lang/qt5-qml and x11-toolkits/qt5-quick into x11-toolkits/qt5-declarativeTobias C. Berner2018-11-041-3/+3
| | | | | | | | | | | | - 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
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-1/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | 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
* devel/qca, devel/qca-qt5 -- create flavorsTobias C. Berner2018-04-141-2/+2
| | | | | | | | Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D14651 Notes: svn path=/head/; revision=467306
* Return pawel@'s ports to the pool after he resigned.Rene Ladan2018-02-241-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=462871
* Remove USES=execinfo.Mathieu Arnold2017-09-221-1/+1
| | | | | | | | | | PR: 220271 Submitted by: mat (review), Yasuhiro KIMURA (PR) Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D11488 Notes: svn path=/head/; revision=450351
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 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, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* Update devel/readline to 7.0 patch 3Sunpoet Po-Chuan Hsieh2017-06-271-1/+1
| | | | | | | | | | | | | | - Bump PORTREVISION for shlib change Changes: https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES https://lists.gnu.org/archive/html/bug-bash/2016-09/msg00107.html https://lists.gnu.org/archive/html/bug-readline/2017-01/msg00002.html Differential Revision: https://reviews.freebsd.org/D11172 PR: 219947 Exp-run by: antoine Notes: svn path=/head/; revision=444463
* Prepare the removal of x11-toolkits/qt5-declarativeTobias C. Berner2017-05-151-2/+2
| | | | | | | | | | | | | | | | | devel/qt5-declarative has not been released since Qt 5.5.1, and it starts to lead to runtime conflicts with qt5-quick if installed. * No port is actually still using it (there are ports that had it as a dependency, but do not really require it -- bump these, and remove it). * Remove it from the Qt 5 metaport. Reported by: Armin Pirkovitsch Reviewed by: rakuco Approved by: rakuco (mentor) Differential Revision: https://reviews.freebsd.org/D10673 Notes: svn path=/head/; revision=440941
* Fix segfault on program exitPawel Pekala2017-05-112-1/+13
| | | | Notes: svn path=/head/; revision=440635
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-0/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* Update to version 4.3Pawel Pekala2017-01-273-6/+45
| | | | | | | | | Changelog: translations: #3124 fixed: added German translation gadu: #3117 fixed: TLS errors fixed (Vogel) Notes: svn path=/head/; revision=432555
* Assume "pkg-config zlib" works after 9.x reached EOLJan Beich2017-01-031-2/+0
| | | | Notes: svn path=/head/; revision=430516
* Fix build on FreeBSD 10.1 by disabling build of some tests usingPawel Pekala2016-12-061-0/+2
| | | | | | | | | advanced C++ constructs not supported by clang system compiler. Reported by: pkg-fallout Notes: svn path=/head/; revision=427994
* - Update to version 4.2Pawel Pekala2016-12-0511-616/+1394
| | | | | | | | | - Add missing dependencies found by stage-qa - Remove INSTALLS_ICONS, it's for Gtk+ applications - Remove upstreamed patches Notes: svn path=/head/; revision=427922
* GOOGLE_CODE has gone away.Mathieu Arnold2016-09-141-1/+0
| | | | | | | | | | | | | - If a port has another upstream, remove GOOGLE_CODE - If a port only has GOOGLE_CODE mark it BROKEN Some ports have a local mirror configured but for security reasons, it is not considered upstream. Sponsored by: Absolight Notes: svn path=/head/; revision=422140
* - Update to version 1.1.0Pawel Pekala2016-07-241-0/+1
| | | | | | | | | - Bump polish/kadu, library ABI change Changelog: https://github.com/vogel/injeqt/blob/master/ChangeLog Notes: svn path=/head/; revision=418991
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.Mathieu Arnold2016-04-011-10/+10
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412348
* - Explicitly specify version for libotr.so to differentiate security/libotr ↵Dmitry Marakasov2016-02-251-1/+1
| | | | | | | | | and security/libotr3 Approved by: portmgr blanket Notes: svn path=/head/; revision=409518
* Add upstream patch to fix the build with the upcoming Qt 5.5.1.Raphael Kubo da Costa2016-01-211-0/+112
| | | | Notes: svn path=/head/; revision=406856
* - Fix build with gcc 4.9 [1]Pawel Pekala2015-11-112-5/+12
| | | | | | | | | | - Use option helper PR: 204395 [1] Reported by: gerald [1] Notes: svn path=/head/; revision=401251
* - Update to version 2.1, now Qt5 basedPawel Pekala2015-07-238-86/+244
| | | | | | | | - USES=compiler for better handling of needed compiler - USES=libarchive to prevent linking with libarchive from base on 10+ Notes: svn path=/head/; revision=392755
* Cleanup DIST* variables.Mathieu Arnold2015-05-111-2/+2
| | | | | | | | | | | | | | When appropriate: - Try to use DISTVERSION{SUF,PRE}FIX - Replace PORTNAME-PORTVERSION by DISTNAME - Convert MASTER_SITES to use macros - Other light cleanup With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386097
* Update to version 1.5Pawel Pekala2015-01-202-4/+3
| | | | | | | | | | Changelog: - otr: #2895 fixed: strange error messages when using libotr5-4.1.0 (Vogel) - history: #2902 fixed: clear history menu item dissappears after a second (Vogel) Notes: svn path=/head/; revision=377538
* - Update devel/qca to version 2.1.0Tijl Coosemans2015-01-121-1/+1
| | | | | | | | | | | | | - Plugins are no longer available separately so remove security/qca-* and replace them with options in devel/qca - Adjust all ports that depended on security/qca-* - This also fixes the build of the OpenSSL plugin when OpenSSL doesn't support SSLv2 Approved by: kde (rakuco) Notes: svn path=/head/; revision=376838
* Update to version 1.4Pawel Pekala2015-01-012-4/+4
| | | | | | | | | Changes: hints: #2905 fixed: crash after clicking on hint (Vogel) gadu: #2906 fixed: random disconnections (Vogel) Notes: svn path=/head/; revision=375916
* CMake 3.1.0 compatibility, take 2.Raphael Kubo da Costa2014-12-311-0/+37
| | | | | | | | | Add another patch of mine sent upstream to make the port build with CMake 3.1.0. No PORTREVISION bump as there should be no changes in functionality or contents of the generated package. Notes: svn path=/head/; revision=375907
* Revert r375855 for now.Raphael Kubo da Costa2014-12-301-29/+0
| | | | | | | | The issue with CMake 3.1.0 is actually something else. Back the change out for now while a proper fix is being worked on. Notes: svn path=/head/; revision=375861
* Add a patch (submitted upstream) to make the port build with CMake 3.1.0.Raphael Kubo da Costa2014-12-301-0/+29
| | | | | | | | Use the proper syntax for configure_package_config_file(). Verified to also work with CMake 3.0.2. Notes: svn path=/head/; revision=375855
* - Update to version 1.3Pawel Pekala2014-12-139-85/+3
| | | | | | | - Remove lots of upstreamed fixes Notes: svn path=/head/; revision=374657
* - Update polish/kadu to version 1.2Pawel Pekala2014-12-0613-255/+723
| | | | | | | - Add UPDATING entry Notes: svn path=/head/; revision=374082