aboutsummaryrefslogtreecommitdiff
path: root/irc/konversation
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update KDE Release-Service releases to 20.12.3Tobias C. Berner2021-03-041-3/+3
| | | | | | | | | 20.12.3 Releases Over 120 individual programs plus dozens of programmer libraries and feature plugins are released simultaneously as part of KDE’s release service. Notes: svn path=/head/; revision=567334
* Update KDE Release-Service to 20.12.2Tobias C. Berner2021-02-041-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Some of our projects release on their own timescale and some get released en-masse. The 20.12.2 bundle of projects was released today with dozens of bugfixes and will be available through app stores and distros soon. See the 20.12.2 releases page for details. Some of the fixes in today’s bugfix releases include: * Ark no longer crashes when closing the window while loading a TAR archive * Dolphin calculates the folder size on FUSE and network file systems correctly now * Konsole no longer crashes when exiting all tabs at the same time * Dictionaries can be added in Kiten’s config dialog * Umbrello doesn’t crash anymore if exiting when a widget in a diagram is selected Release Notes: https://community.kde.org/Releases/20.12_Release_Notes Full Changelog: https://kde.org/announcements/fulllog_releases-20.12.2/ Notes: svn path=/head/; revision=564060
* Update KDE Release Service ports to 20.12.1Tobias C. Berner2021-01-081-3/+3
| | | | | | | | Full changelog: https://kde.org/announcements/fulllog_releases-20.12.1/ Notes: svn path=/head/; revision=560805
* Update KDE Applications to 20.12Tobias C. Berner2020-12-113-193/+109
| | | | | | | | | | | | | | | - astro/libkgeomap has been removed as there are no consumers left - deskutils/kdepim-apps-libs has been reintegrated into other ports There are a handful of new ports available: - astro/kosmindoormap: Library and QML component for rendering multi-level OSM indoor maps - deskutils/itinerary: KDE Itinerary is a digital travel assistant - devel/kpublictransport: Access realtime public transport data - graphics/kontrast: Color contrast checker - textproc/markdownpart: KPart for rendering Markdown content Notes: svn path=/head/; revision=557757
* irc/konversation: update to 1.7.7Tobias C. Berner2020-10-263-12/+21
| | | | Notes: svn path=/head/; revision=553373
* irc/konversation: update to 1.7.6Tobias C. Berner2020-09-295-72/+10
| | | | Notes: svn path=/head/; revision=550532
* irc/konversation: prepare for Qt5-5.15Tobias C. Berner2020-05-181-0/+10
| | | | Notes: svn path=/head/; revision=535744
* devel/qca: update to 2.3Tobias C. Berner2020-03-211-4/+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
* Make implicit dependency on devel/qt5-concurrent explicitTobias C. Berner2020-03-141-2/+2
| | | | Notes: svn path=/head/; revision=528428
* Update KDE Frameworks to latest upstream release, 5.61Adriaan de Groot2019-08-151-0/+23
| | | | | | | | | | | | | | | | | | | | | Release notes at https://kde.org/announcements/kde-frameworks-5.61.0.php Thanks to antoine@ for the exp-runs, tcberner@ for most of the prep-work, the Gentoo community for cherry-picking patches There are a bunch of changes in (implicitly included) headers, which broke existing KDE Applications builds; that's why there are a whole bunch of "patch-gentoo-kf5-5.61-headers" patches (taken from Gentoo packaging). Those will go away with the next KDE Applications release, PR: 239777 Submitted by: tcberner Notes: svn path=/head/; revision=508988
* 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
* 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-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
* More GCC-related fixes in kde@ portsTobias C. Berner2018-12-301-1/+2
| | | | | | | | PR: 234461 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Notes: svn path=/head/; revision=488723
* 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
* Update to 1.7.5.Raphael Kubo da Costa2018-07-142-5/+4
| | | | | | | | This is a small bugfix release with a single change fixing the build with Qt 5.11. Notes: svn path=/head/; revision=474651
* 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
* multimedia/*phonon*: update and flavorize with @qt4/@qt5Tobias C. Berner2018-06-211-1/+1
| | | | | | | | Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D14632 Notes: svn path=/head/; revision=472983
* devel/qca, devel/qca-qt5 -- create flavorsTobias C. Berner2018-04-141-1/+2
| | | | | | | | Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D14651 Notes: svn path=/head/; revision=467306
* Update to 1.7.4.Raphael Kubo da Costa2017-12-232-4/+4
| | | | | | | | | | | | Changes from Konversation 1.7.3 to 1.7.4: Fixed a bug causing the size of a custom chat text view font set via the configuration dialog to be ignored. A font size modification done via the Enlarge/Decrease Font Size actions is nowapplied on top of the configured size (or the system default font size, respectively). Notes: svn path=/head/; revision=457120
* Update irc/konversation to latest upstream release.Adriaan de Groot2017-11-122-5/+4
| | | | | | | | | | | | Reported by: tcberner Approved by: tcberner (mentor) MFH: 2017Q4 Security: https://www.kde.org/info/security/advisory-20171112-1.txt Security: CVE-2017-15923 Differential Revision: https://reviews.freebsd.org/D13065 Notes: svn path=/head/; revision=454088
* Add kf5-kinit as a runtime dependency to irc/konversationTobias C. Berner2017-06-301-1/+3
| | | | | | | | | | | * The URL handler needs klauncher5 which is part of kf5-kinit. Reported by: Gleb Popov <6yearold@gmail.com> Reviewed by: rakuco Differential Revision: https://reviews.freebsd.org/D11425 Notes: svn path=/head/; revision=444772
* Update to 1.7.2 and rename to irc/konversation.Raphael Kubo da Costa2017-05-304-0/+321
| | | | | | | | | | | Update to the latest release (which is KF5-based) and drop the "-kde4" suffix from the port. Reviewed by: tcberner Differential Revision: https://reviews.freebsd.org/D10928 Notes: svn path=/head/; revision=442126
* KDE3 and QT3 expired on 2013-07-01, remove these ports.Rene Ladan2013-07-265-379/+0
| | | | | | | | | | | | | | | | | | | Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt Notes: svn path=/head/; revision=323748
* - Add missing depsPawel Pekala2013-02-091-7/+4
| | | | | | | | - Remove leading article from COMMENT - Trim Makefile header Notes: svn path=/head/; revision=311973
* - Deprecate QT3, KDE3 and unmaintained ports depending on them. QT 3.3.8Beat Gaetzi2012-12-301-0/+3
| | | | | | | | | | | was released in 2007 and KDE 3.5.10 in 2008 and both are no longer maintained upstream nor in our tree. - Set EXPIRATION_DATE to 2013-07-01 Discussed with: bapt, tabthorpe Notes: svn path=/head/; revision=309662
* Revert Chris Petrik's ports to the pool. Thank you for all your work so ↵Eitan Adler2012-12-101-1/+1
| | | | | | | | | | far, and should you desire to return just let us know. PR: ports/174309 Submitted by: Chris Petrik Notes: svn path=/head/; revision=308576
* Welcome back Chris Petrik <c.petrik.sosa@gmail.com>Eitan Adler2012-09-091-1/+1
| | | | | | | PR: ports/171481 Notes: svn path=/head/; revision=303952
* - update png to 1.5.10Dirk Meyer2012-06-011-1/+1
| | | | Notes: svn path=/head/; revision=297915
* - Reassign to the heapThomas Abthorpe2011-07-051-1/+1
| | | | Notes: svn path=/head/; revision=277083
* - Get Rid MD5 supportMartin Wilke2011-03-191-1/+0
| | | | Notes: svn path=/head/; revision=271305
* Sync to new bsd.autotools.mkAde Lovett2010-12-041-1/+1
| | | | Notes: svn path=/head/; revision=265663
* - 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
* - update to jpeg-8Dirk Meyer2010-02-051-1/+1
| | | | Notes: svn path=/head/; revision=249285
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr Notes: svn path=/head/; revision=238781
* - bump all port that indirectly depends on libjpeg and have not yet been ↵Dirk Meyer2009-07-311-0/+1
| | | | | | | | | bumped or updated Requested by: edwin Notes: svn path=/head/; revision=238701
* Update to version 1.1Markus Brueffer2008-09-024-42/+25
| | | | | | | Submitted by: makc Notes: svn path=/head/; revision=219671
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+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
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-192-18/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Update to version 1.0.1Markus Brueffer2006-10-073-4/+16
| | | | Notes: svn path=/head/; revision=174695
* - Update to version 1.0Markus Brueffer2006-09-024-14/+70
| | | | | | | - Extend pkg-descr and fix a typo Notes: svn path=/head/; revision=171878
* remove USE_REINPLACE for all categories starting with IEdwin Groothuis2006-05-081-1/+0
| | | | Notes: svn path=/head/; revision=161690
* Conversion to a single libtool environment.Ade Lovett2006-02-231-1/+1
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* Update to version 0.19Markus Brueffer2006-01-305-106/+69
| | | | Notes: svn path=/head/; revision=154805
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154157
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-59/+59
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154113
* Bump PORTREVISION to chase the glib20 shared library update.Joe Marcus Clarke2005-11-051-1/+1
| | | | Notes: svn path=/head/; revision=147269
* - Distfile was rerolled. Only change is the removal of gcov related CXXFLAGSMarkus Brueffer2005-06-072-2/+3
| | | | | | | | and a resulting regeneration of the buildsystem - Bump PORTREVISION Notes: svn path=/head/; revision=137002