Commit Graph

33 Commits

Author SHA1 Message Date
Adriaan de Groot f945b541cf kutils/latte-dock update to latest upstream,
Release notes:
	https://psifidotos.blogspot.com/2020/04/latte-bug-fix-release-v0911.html
One fix is for "classic systray", so if you use telegram-desktop and
latte, things are now better.
2020-04-12 12:35:56 +00:00
Tobias C. Berner c107436877 deskutils/latte-dock: update to 0.9.10 2020-03-28 16:57:01 +00:00
Adriaan de Groot ce665cfca8 Update deskutils/latte-dock to latest upstream release, 0.9.9
Release notes at
	https://psifidotos.blogspot.com/2020/02/latte-bug-fix-release-v099.html

There's a critical configuration fix (new users especially, didn't get
a correct config file) and an important UI fix. (Note "critical" here
is for functionality, not security)
2020-02-26 22:32:55 +00:00
Tobias C. Berner 16bac758ec deskutils/latte-dock: update to 0.9.8.1 2020-01-29 17:55:39 +00:00
Tobias C. Berner ccac33d730 deskutils/latte-dock: update to 0.9.8 2020-01-26 11:28:39 +00:00
Adriaan de Groot 76cac16e86 Update deskutils/latte-dock to latest upstream release
There was a 0.9.6 which showed up briefly, skip to 0.9.7 released
yesterday. Release notes are at

	https://psifidotos.blogspot.com/2019/12/latte-bug-fix-release-v097.html

There's a handful of bug fixes and prep-work for Qt 5.14 (which isn't
on our radar for KDE-FreeBSD yet).
2019-12-31 20:13:28 +00:00
Tobias C. Berner 2563168c7c deskutils/latte-dock: update to 0.9.5 2019-12-08 09:56:41 +00:00
Niclas Zeising 366790689c Add USES=xorg USES=gl, ports categories d
Add USES=xorg, USES=gl and in a few cases USES=gnome to ports in categories
starting with 'd'.
2019-11-04 22:20:30 +00:00
Adriaan de Groot 9c6fdca223 Update deskutils/latte-dock to latest upstream.
Release announcement:
	https://psifidotos.blogspot.com/2019/10/latte-bug-fix-release-v094.html

Notable:
 - some UI improvements
 - autostart fixes which I'm not sure apply to us at all
2019-10-28 14:48:07 +00:00
Tobias C. Berner b7fb956b09 deskutils/latte-dock: update to 0.9.3 2019-09-30 15:29:19 +00:00
Tobias C. Berner 6f7b187c8e deskutils/latte-dock: update to 0.9.2 2019-09-06 10:56:11 +00:00
Tobias C. Berner c8ca25c5bb desktuils/latte-dock: update to 0.9.1 2019-08-28 20:43:26 +00:00
Gerald Pfeifer ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
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
2019-07-26 20:46:53 +00:00
Tobias C. Berner aeaab9cb32 deskutils/latte-dock: update to 0.8.9 2019-06-29 06:26:54 +00:00
Adriaan de Groot 4ed9a289f0 Update deskutils/latte-dock to latest upstream release, 0.8.8
From the release notes:
 - Fixes: multi-screen fix: unload properly explicit screen docks
   when their screen is not available any more
2019-04-16 07:48:42 +00:00
Adriaan de Groot 64f87fcaa7 Support GCC architectures, add compiler:c++11-lang
Same kind of fix as all the other KDE-related GCC fixes.

PR:		237044
Submitted by:	Piotr Kubaj
2019-04-05 15:07:10 +00:00
Tobias C. Berner 91a1e30c46 deskutils/latte-dock: update to 0.8.7 2019-03-02 05:46:48 +00:00
Adriaan de Groot 65b6bf99d7 Update deskutils/latte-dock to latest release.
Fixes:
 - fix previews that broke after kde frameworks 5.55 update
 - fix shortcuts behavior from plasma applets when using "Multiple" layouts
2019-02-17 16:41:31 +00:00
Tobias C. Berner 489bff9e81 deskutils/latte-dock: update to 0.8.5 2019-01-27 11:08:28 +00:00
Tijl Coosemans 1bf487d3e7 Fix Qt5 symbol version scripts to put the catch-all clause first. When
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)
2019-01-16 11:13:44 +00:00
Tobias C. Berner c900148a29 deskutils/latte-dock: update to 0.8.4 2018-12-29 14:08:17 +00:00
Tobias C. Berner 707c6bf295 Change cmake default behaviour to outsource.
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
2018-12-25 20:25:39 +00:00
Tobias C. Berner 8bb418ca53 deskutils/latte-dock: update to 0.8.3 2018-12-02 10:05:59 +00:00
Tobias C. Berner 89d1bb9ab0 Merge lang/qt5-qml and x11-toolkits/qt5-quick into x11-toolkits/qt5-declarative
- 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
2018-11-04 19:00:53 +00:00
Adriaan de Groot fe97e03c36 Update deskutils/latte-dock to latest release.
https://psifidotos.blogspot.com/2018/10/latte-bug-fix-release-v082.html

Main change is for multi-screen environments, and some bugfixing.
2018-10-28 16:06:50 +00:00
Tobias C. Berner 8ae3949dce Update desktuils/latte-dock to 0.8.1 2018-09-17 19:24:49 +00:00
Tobias C. Berner e2c8ff645f Update deskutils/latte-dock to 0.8.0 2018-08-01 11:49:02 +00:00
Tobias C. Berner b1a1d38bf9 Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
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
2018-06-28 17:39:53 +00:00
Tobias C. Berner d6a81963b1 Update deskutils/latte-dock to 0.7.5 2018-04-28 09:02:38 +00:00
Tobias C. Berner d7b0c5c272 Update desktuils/latte-dock to 0.7.4 2018-03-09 18:18:14 +00:00
Adriaan de Groot c55095823f Update deskutils/latte-dock to latest upstream release, 0.7.3
http://psifidotos.blogspot.nl/2018/01/latte-bug-fix-release-v073-and-some-news.html

Approved by:	rakuco (mentor)
Differential Revision:	https://reviews.freebsd.org/D13841
2018-01-12 21:54:57 +00:00
Mathieu Arnold d9033160f4 Don't use MASTER_SITE_SUBDIR when it is not needed.
Sponsored by:	Absolight
2017-11-24 17:53:11 +00:00
Adriaan de Groot fb4c5789da Add latte-dock, an alternative launcher / taskbar from the KDE community.
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D13075
2017-11-17 23:11:07 +00:00