1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

x11-wm/lxqt: Update to 2.0.0

- Update mostly lxqt ports to 2.0.x
- Update some lxqt dependencies to latest version
- Update Mk/Uses/lxqt.mk file for support some legacy and new lxqt ports
- Add devel/libdbusmenu-lxqt
- Add x11/libfm-qt6
- Add devel/libqt6xdg
- Add sysutils/libsysstat-qt6
- Add devel/lxqt2-build-tools
- Add sysutils/lxqt-qt6plugin
- Add deskutils/xdg-desktop-portal-lxqt
- Add x11-toolkits/qtermwidget-qt5 for no break x11/coreterminal
- Pass maintainership to new lxqt@ group
- Few other modifications

PR:		278905
Approved by:	jsm
This commit is contained in:
Jose Alonso Cardenas Marquez 2024-06-12 19:21:05 -05:00
parent e86ce540a2
commit 385fcf599e
No known key found for this signature in database
GPG Key ID: 335B9246BA5E30F4
87 changed files with 627 additions and 449 deletions

View File

@ -2,26 +2,32 @@
# life easier, when dealing with ports related to the LXQt Desktop Environment.
#
# Feature: lxqt
# Usage: USES=lxqt
# Valid ARGS: does not require args
# Usage: USES=lxqt:<version>
# Valid ARGS: 1, 2
#
# Available LXQt components are:
#
# buildtools - Helpers CMake modules
# globalkeys - Keyboard shortcuts daemon
# libfmqt - Libfm Qt bindings
# lxqt - LXQt core library
# qtxdg - Qt implementation of freedesktop.org xdg specs
# buildtools / buildtools2 - Helpers CMake modules
# globalkeys - Keyboard shortcuts daemon
# libfmqt / libfmqt6 - Libfm Qt5/Qt6 bindings
# lxqt - LXQt core library
# qtxdg / qt6xdg - Qt5/Qt6 implementation of freedesktop.org xdg specs
# sysstat / sysstat-qt6 - Qt5/Qt6 library to query system information
#
# MAINTAINER: ports@FreeBSD.org
.if !defined(_INCLUDE_USES_LXQT_MK)
_INCLUDE_USES_LXQT_MK= yes
. if !empty(lxqt_ARGS)
IGNORE= Incorrect 'USES+=lxqt:${lxqt_ARGS} takes no arguments
. if empty(lxqt_ARGS)
IGNORE= Incorrect 'USES+=lxqt:${lxqt_ARGS} takes arguments 1 or 2
. endif
. if ${lxqt_ARGS:N1:N2}
IGNORE= Unknown argument for USES=lxqt: ${lxqt_ARGS:N1:N2}
. endif
_LXQT_VER= ${lxqt_ARGS}
_LXQT_PROJECT= ${DISTNAME:S/-${DISTVERSION}//:tl}
MASTER_SITE_LXQT+= \
@ -32,6 +38,7 @@ MASTER_SITE_LXQT_SUBDIR= ${_LXQT_PROJECT}
MASTER_SITES?= ${MASTER_SITE_LXQT}
MASTER_SITE_SUBDIR?= ${MASTER_SITE_LXQT_SUBDIR}
DISTNAME= ${PORTNAME:S/2//:S/6//}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX}
DIST_SUBDIR= lxqt
PLIST_SUB+= LXQT_INCLUDEDIR="include/lxqt" \
@ -42,22 +49,31 @@ PLIST_SUB+= LXQT_INCLUDEDIR="include/lxqt" \
CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR=${PREFIX}/share/man
# Available LXQt components are:
_USE_LXQT_ALL= buildtools globalkeys libfmqt lxqt qtxdg
_USE_LXQT1_ONLY=buildtools libfmqt qtxdg sysstat
_USE_LXQT2_ONLY=buildtools2 globalkeys libfmqt6 lxqt qt6xdg sysstat-qt6
_USE_LXQT_ALL= ${_USE_LXQT${_LXQT_VER}_ONLY}
_DATAROOTDIR= ${LOCALBASE}/share
buildtools_BUILD_DEPENDS= ${_DATAROOTDIR}/cmake/lxqt-build-tools/lxqt-build-tools-config.cmake:devel/lxqt-build-tools
buildtools2_BUILD_DEPENDS= ${_DATAROOTDIR}/cmake/lxqt2-build-tools/lxqt2-build-tools-config.cmake:devel/lxqt2-build-tools
globalkeys_LIB_DEPENDS= liblxqt-globalkeys.so:x11/lxqt-globalkeys
globalkeys_USE_LXQT_REQ= lxqt
libfmqt_LIB_DEPENDS= libfm-qt.so:x11/libfm-qt
libfmqt6_LIB_DEPENDS= libfm-qt6.so:x11/libfm-qt6
lxqt_LIB_DEPENDS= liblxqt.so:devel/liblxqt
lxqt_USE_LXQT_REQ= qtxdg
lxqt_USE_LXQT_REQ= qt6xdg
qtxdg_LIB_DEPENDS= libQt5Xdg.so:devel/libqtxdg
qt6xdg_LIB_DEPENDS= libQt6Xdg.so:devel/libqt6xdg
sysstat_LIB_DEPENDS= libsysstat-qt5:devel/libsysstat
sysstat-qt6_LIB_DEPENDS=libsysstat-qt6.so:devel/libsysstat-qt6
. if defined(USE_LXQT)

View File

@ -1,27 +1,27 @@
PORTNAME= lxqt-archiver
PORTVERSION= 0.9.0
PORTVERSION= 1.0.0
CATEGORIES= archivers
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
COMMENT= Qt file archiver
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Qt6 file archiver
WWW= https://github.com/lxqt/lxqt-archiver
LICENSE= GPLv2
LIB_DEPENDS= libfm-qt.so:x11/libfm-qt \
LIB_DEPENDS= libfm-qt6.so:x11/libfm-qt6 \
libjson-glib-1.0.so:devel/json-glib \
libmenu-cache.so:x11/menu-cache \
libexif.so:graphics/libexif
RUN_DEPENDS= gtar:archivers/gtar \
unzip:archivers/unzip
USES= cmake compiler:c++14-lang desktop-file-utils lxqt perl5 pkgconfig \
tar:xz gnome qt:5 xorg
USES= cmake compiler:c++17-lang desktop-file-utils lxqt:2 perl5 \
pkgconfig tar:xz gnome qt:6 xorg
USE_GNOME= glib20
USE_QT= buildtools:build qmake:build core gui
USE_LXQT= buildtools lxqt
USE_QT= tools:build base:run
USE_LXQT= buildtools2 libfmqt6 lxqt
USE_XORG= xcb
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706384027
SHA256 (lxqt/lxqt-archiver-0.9.0.tar.xz) = be2d49669220700d71b5f4a62d340eab36e29b4a8327c1f551ae95eede793158
SIZE (lxqt/lxqt-archiver-0.9.0.tar.xz) = 183352
TIMESTAMP = 1714104765
SHA256 (lxqt/lxqt-archiver-1.0.0.tar.xz) = 4152af9cb6a13236d8776c0bd29937158b310719fb9596f723fb0fcc34596563
SIZE (lxqt/lxqt-archiver-1.0.0.tar.xz) = 187944

View File

@ -1,2 +1,2 @@
A simple & lightweight Qt file archiver.
A simple & lightweight Qt6 file archiver.
The core I/O functions are ported from Engrampa

View File

@ -23,10 +23,12 @@ share/icons/hicolor/scalable/apps/lxqt-archiver.svg
%%DATADIR%%/translations/lxqt-archiver_it.qm
%%DATADIR%%/translations/lxqt-archiver_ja.qm
%%DATADIR%%/translations/lxqt-archiver_ko.qm
%%DATADIR%%/translations/lxqt-archiver_lg.qm
%%DATADIR%%/translations/lxqt-archiver_lt.qm
%%DATADIR%%/translations/lxqt-archiver_nb_NO.qm
%%DATADIR%%/translations/lxqt-archiver_nl.qm
%%DATADIR%%/translations/lxqt-archiver_oc.qm
%%DATADIR%%/translations/lxqt-archiver_pa.qm
%%DATADIR%%/translations/lxqt-archiver_pl.qm
%%DATADIR%%/translations/lxqt-archiver_pt.qm
%%DATADIR%%/translations/lxqt-archiver_pt_BR.qm
@ -38,4 +40,5 @@ share/icons/hicolor/scalable/apps/lxqt-archiver.svg
%%DATADIR%%/translations/lxqt-archiver_tr.qm
%%DATADIR%%/translations/lxqt-archiver_uk.qm
%%DATADIR%%/translations/lxqt-archiver_vi.qm
%%DATADIR%%/translations/lxqt-archiver_zh_CN.qm
%%DATADIR%%/translations/lxqt-archiver_zh_TW.qm

View File

@ -1,22 +1,21 @@
PORTNAME= pavucontrol-qt
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= audio
MASTER_SITES= LXQT/${PORTNAME}
MAINTAINER= jsm@FreeBSD.org
COMMENT= PulseAudio mixer in Qt
MAINTAINER= lxqt@FreeBSD.org
COMMENT= PulseAudio mixer in Qt6
WWW= https://github.com/lxqt/pavucontrol-qt/
LICENSE= GPLv2
LIB_DEPENDS= libpulse.so:audio/pulseaudio
USES= cmake compiler:c++14-lang gettext-runtime localbase:ldflags qt:5 \
lxqt perl5 pkgconfig tar:xz gnome
USES= cmake compiler:c++17-lang gettext-runtime localbase:ldflags \
lxqt:2 qt:6 perl5 pkgconfig tar:xz gnome
USE_PERL5= build
USE_QT= buildtools:build qmake:build core gui linguisttools \
widgets
USE_LXQT= buildtools
USE_QT= base:run tools:build
USE_LXQT= buildtools2
USE_GNOME= glib20
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706383596
SHA256 (lxqt/pavucontrol-qt-1.4.0.tar.xz) = 0d7ced3b9d215bcfae8fd5df5429aa07b0517984925cfa1cd020a9505749a994
SIZE (lxqt/pavucontrol-qt-1.4.0.tar.xz) = 111712
TIMESTAMP = 1714113453
SHA256 (lxqt/pavucontrol-qt-2.0.0.tar.xz) = 3acec36371614a2bb8145228449e684cea83aab31234c960176688d88e830475
SIZE (lxqt/pavucontrol-qt-2.0.0.tar.xz) = 114044

View File

@ -27,6 +27,7 @@ share/applications/pavucontrol-qt.desktop
%%DATADIR%%/translations/pavucontrol-qt_ja.qm
%%DATADIR%%/translations/pavucontrol-qt_kn.qm
%%DATADIR%%/translations/pavucontrol-qt_ko.qm
%%DATADIR%%/translations/pavucontrol-qt_lg.qm
%%DATADIR%%/translations/pavucontrol-qt_lt.qm
%%DATADIR%%/translations/pavucontrol-qt_ml.qm
%%DATADIR%%/translations/pavucontrol-qt_mr.qm

View File

@ -1,22 +1,21 @@
PORTNAME= lxqt-notificationd
PORTVERSION= 1.4.0
PORTVERSION= 2.0.1
CATEGORIES= deskutils
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= LXQt notification daemon
WWW= https://lxqt-project.org
LICENSE= LGPL21+
USES= cmake compiler:c++14-lang gettext kde:5 lxqt qt:5 \
perl5 pkgconfig tar:xz gnome xorg
USES= cmake compiler:c++17-lang gettext kde:6 localbase:ldflags lxqt:2 qt:6 \
perl5 pkgconfig tar:xz gnome xorg
USE_PERL5= build
USE_QT= buildtools:build qmake:build dbus core gui \
linguisttools svg widgets x11extras xml
USE_KDE= windowsystem
USE_LXQT= buildtools lxqt
USE_QT= base:run tools:build svg
USE_KDE= layer-shell-qt windowsystem
USE_GNOME= glib20
USE_XORG= x11
USE_LXQT= buildtools2 lxqt
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706384865
SHA256 (lxqt/lxqt-notificationd-1.4.0.tar.xz) = 4334b8c7f3f2d5e65bb3b88e188324924102aff91ee7aa1066f9bc6f4bf66ca8
SIZE (lxqt/lxqt-notificationd-1.4.0.tar.xz) = 61792
TIMESTAMP = 1715396560
SHA256 (lxqt/lxqt-notificationd-2.0.1.tar.xz) = f66366221825774967b4ae4ec658d00128bf4536be779ca02e4406a184262aec
SIZE (lxqt/lxqt-notificationd-2.0.1.tar.xz) = 64132

View File

@ -1,2 +1,2 @@
lxqt-notificationd is a daemon enabling applications to display
lxqt2-notificationd is a daemon enabling applications to display
notifications in pop-up windows on desktops.

View File

@ -25,11 +25,13 @@ share/applications/lxqt-config-notificationd.desktop
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_pt_BR.qm
@ -63,11 +65,13 @@ share/applications/lxqt-config-notificationd.desktop
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_pt_BR.qm

View File

@ -1,24 +1,23 @@
PORTNAME= liblxqt
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= devel
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Shared library for LXQt applications
WWW= https://github.com/lxqt/liblxqt
LICENSE= LGPL21+
LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt-1@qt5
LIB_DEPENDS= libpolkit-qt6-core-1.so:sysutils/polkit-qt-1@qt6
USES= cmake compiler:c++14-lang gnome kde:5 lxqt \
pkgconfig qt:5 tar:xz xorg
USES= cmake compiler:c++17-lang gnome kde:6 lxqt:2 \
pkgconfig qt:6 tar:xz xorg
USE_GNOME= glib20
USE_QT= buildtools:build qmake:build dbus core gui \
svg widgets x11extras xml
USE_QT= base:run tools:build svg
USE_KDE= windowsystem
USE_LXQT= buildtools qtxdg
USE_XORG= x11 xscrnsaver
USE_LDCONFIG= yes
USE_LXQT= buildtools2 qt6xdg
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706382292
SHA256 (lxqt/liblxqt-1.4.0.tar.xz) = b55073e7673e19d30339cabf5692a86b3aee244f3009f67e424b7c919f4d96f0
SIZE (lxqt/liblxqt-1.4.0.tar.xz) = 84388
TIMESTAMP = 1714101171
SHA256 (lxqt/liblxqt-2.0.0.tar.xz) = 61092556146b769dc9bab328550f3f157e618a1a09ae1e052db61fc0db07b3e4
SIZE (lxqt/liblxqt-2.0.0.tar.xz) = 85988

View File

@ -38,7 +38,7 @@ bin/lxqt-backlight_backend
%%LXQT_INCLUDEDIR%%/LXQt/lxqtsingleapplication.h
%%LXQT_INCLUDEDIR%%/LXQt/lxqttranslator.h
lib/liblxqt.so
lib/liblxqt.so.1
lib/liblxqt.so.2
lib/liblxqt.so.%%VERSION%%
libdata/pkgconfig/lxqt.pc
share/cmake/lxqt/lxqt-config-version.cmake
@ -75,11 +75,13 @@ share/cmake/lxqt/lxqt-targets.cmake
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_ja.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_kk.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_ko.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_lg.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_lt.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_lv.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_nb_NO.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_nl.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_oc.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_pa.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_pl.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_pt.qm
%%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_pt_BR.qm

View File

@ -3,16 +3,21 @@ PORTVERSION= 3.12.0
CATEGORIES= devel
MASTER_SITES= LXQT/${PORTNAME}
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Qt implementation of freedesktop.org xdg specs
WWW= https://github.com/lxde/libqtxdg
LICENSE= LGPL21+
USES= cmake compiler:c++14-lang gnome lxqt pkgconfig qt:5 tar:xz
USES= cmake compiler:c++17-lang gnome lxqt:1 pkgconfig qt:5 tar:xz
USE_LDCONFIG= yes
USE_GNOME= glib20
USE_QT= buildtools:build qmake:build core dbus gui svg widgets \
xml
USE_LXQT= buildtools
post-extract:
@${MV} ${WRKSRC}/config/lxqt-qtxdg.conf ${WRKSRC}/config/lxqt-qtxdg-legacy.conf
@${MV} ${WRKSRC}/config/qtxdg.conf ${WRKSRC}/config/qtxdg-legacy.conf
.include <bsd.port.mk>

View File

@ -1,5 +1,5 @@
etc/xdg/lxqt-qtxdg.conf
etc/xdg/qtxdg.conf
etc/xdg/lxqt-qtxdg-legacy.conf
etc/xdg/qtxdg-legacy.conf
%%QT_INCDIR%%xdg/XdgAction
%%QT_INCDIR%%xdg/XdgAutoStart
%%QT_INCDIR%%xdg/XdgDefaultApps

View File

@ -3,14 +3,14 @@ PORTVERSION= 0.13.0
CATEGORIES= devel
MASTER_SITES= LXQT/${PORTNAME}
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Helpers CMake modules for LXQt
WWW= https://github.com/lxde/lxqt-build-tools
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/BSD-3-Clause
USES= cmake lxqt pkgconfig qt:5 tar:xz gnome
USES= cmake lxqt:1 pkgconfig qt:5 tar:xz gnome
USE_QT= qmake:build buildtools:build core
USE_GNOME= glib20

View File

@ -1,24 +1,23 @@
PORTNAME= featherpad
PORTVERSION= 1.4.1
PORTVERSION= 1.5.1
DISTVERSIONPREFIX= V
CATEGORIES= editors
MAINTAINER= jsm@FreeBSD.org
COMMENT= Lightweight Qt5 plain-text editor
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Lightweight Qt6 plain-text editor
WWW= https://github.com/tsujan/FeatherPad
LICENSE= GPLv3
LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell
USES= compiler:c++11-lang desktop-file-utils pkgconfig cmake qt:5 gl xorg
USES= compiler:c++17-lang desktop-file-utils pkgconfig cmake qt:6 gl xorg
USE_GITHUB= yes
GH_ACCOUNT= tsujan
GH_PROJECT= FeatherPad
USE_QT= buildtools:build qmake:build core dbus gui printsupport network \
svg widgets x11extras linguisttools
USE_QT= base:run tools:build svg
USE_XORG= x11 sm ice xext
USE_GL= gl

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1687284218
SHA256 (tsujan-FeatherPad-V1.4.1_GH0.tar.gz) = e60258388ca3039e434d7b661548113057a85443a1a288843b5ec6044b4206dc
SIZE (tsujan-FeatherPad-V1.4.1_GH0.tar.gz) = 1109511
TIMESTAMP = 1716018210
SHA256 (tsujan-FeatherPad-V1.5.1_GH0.tar.gz) = 2826b3dc26877284d7bb5b62430e99b4fbcf45862af89549e4b4e9f40b16c3c5
SIZE (tsujan-FeatherPad-V1.5.1_GH0.tar.gz) = 1087189

View File

@ -1,2 +1,2 @@
FeatherPad is a lightweight Qt5 plain-text editor. It is independent of
FeatherPad is a lightweight Qt6 plain-text editor. It is independent of
any desktop environment.

View File

@ -1,9 +1,9 @@
PORTNAME= lximage-qt
PORTVERSION= 1.4.0
PORTVERSION= 2.0.1
CATEGORIES= graphics
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Image viewer
WWW= https://github.com/lxde/lximage-qt
@ -12,14 +12,13 @@ LICENSE= GPLv2
LIB_DEPENDS= libexif.so:graphics/libexif \
libmenu-cache.so:x11/menu-cache
USES= cmake compiler:c++14-lang desktop-file-utils gettext-runtime \
gnome localbase:ldflags lxqt perl5 pkgconfig qt:5 gnome tar:xz xorg
USES= cmake compiler:c++17-lang desktop-file-utils gettext-runtime \
gnome localbase:ldflags lxqt:2 perl5 pkgconfig qt:6 gnome tar:xz xorg
USE_GNOME= glib20
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui linguisttools \
network printsupport svg widgets x11extras
USE_LXQT= buildtools libfmqt
USE_QT= base:run tools:build svg
USE_LXQT= buildtools2 libfmqt6
USE_XORG= ice sm x11 xcb xext xfixes
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706383944
SHA256 (lxqt/lximage-qt-1.4.0.tar.xz) = 0857650bdb32c5ba5befbd726fbff62137e45d2cf26bc88b0d32622e718cd34e
SIZE (lxqt/lximage-qt-1.4.0.tar.xz) = 841028
TIMESTAMP = 1715396348
SHA256 (lxqt/lximage-qt-2.0.1.tar.xz) = 55ca3bb14f58cda3abe364f820de011aeddb4b2840e3ae4467190c1097c40f8e
SIZE (lxqt/lximage-qt-2.0.1.tar.xz) = 848348

View File

@ -1,48 +1,49 @@
bin/lximage-qt
share/applications/lximage-qt.desktop
share/icons/hicolor/48x48/apps/lximage-qt.svg
%%DATADIR%%/translations/lximage-qt_ar.qm
%%DATADIR%%/translations/lximage-qt_arn.qm
%%DATADIR%%/translations/lximage-qt_ast.qm
%%DATADIR%%/translations/lximage-qt_bg.qm
%%DATADIR%%/translations/lximage-qt_ca.qm
%%DATADIR%%/translations/lximage-qt_cs.qm
%%DATADIR%%/translations/lximage-qt_cy.qm
%%DATADIR%%/translations/lximage-qt_da.qm
%%DATADIR%%/translations/lximage-qt_de.qm
%%DATADIR%%/translations/lximage-qt_de_CH.qm
%%DATADIR%%/translations/lximage-qt_el.qm
%%DATADIR%%/translations/lximage-qt_en_GB.qm
%%DATADIR%%/translations/lximage-qt_es.qm
%%DATADIR%%/translations/lximage-qt_et.qm
%%DATADIR%%/translations/lximage-qt_fi.qm
%%DATADIR%%/translations/lximage-qt_fr.qm
%%DATADIR%%/translations/lximage-qt_gl.qm
%%DATADIR%%/translations/lximage-qt_he.qm
%%DATADIR%%/translations/lximage-qt_hi.qm
%%DATADIR%%/translations/lximage-qt_hr.qm
%%DATADIR%%/translations/lximage-qt_hu.qm
%%DATADIR%%/translations/lximage-qt_id.qm
%%DATADIR%%/translations/lximage-qt_is.qm
%%DATADIR%%/translations/lximage-qt_it.qm
%%DATADIR%%/translations/lximage-qt_ja.qm
%%DATADIR%%/translations/lximage-qt_ko.qm
%%DATADIR%%/translations/lximage-qt_lt.qm
%%DATADIR%%/translations/lximage-qt_nb_NO.qm
%%DATADIR%%/translations/lximage-qt_nl.qm
%%DATADIR%%/translations/lximage-qt_oc.qm
%%DATADIR%%/translations/lximage-qt_pa.qm
%%DATADIR%%/translations/lximage-qt_pl.qm
%%DATADIR%%/translations/lximage-qt_pt.qm
%%DATADIR%%/translations/lximage-qt_pt_BR.qm
%%DATADIR%%/translations/lximage-qt_ru.qm
%%DATADIR%%/translations/lximage-qt_si.qm
%%DATADIR%%/translations/lximage-qt_sk.qm
%%DATADIR%%/translations/lximage-qt_sl.qm
%%DATADIR%%/translations/lximage-qt_sv.qm
%%DATADIR%%/translations/lximage-qt_tr.qm
%%DATADIR%%/translations/lximage-qt_uk.qm
%%DATADIR%%/translations/lximage-qt_vi.qm
%%DATADIR%%/translations/lximage-qt_zh_CN.qm
%%DATADIR%%/translations/lximage-qt_zh_TW.qm
share/lximage-qt/translations/lximage-qt_ar.qm
share/lximage-qt/translations/lximage-qt_arn.qm
share/lximage-qt/translations/lximage-qt_ast.qm
share/lximage-qt/translations/lximage-qt_bg.qm
share/lximage-qt/translations/lximage-qt_ca.qm
share/lximage-qt/translations/lximage-qt_cs.qm
share/lximage-qt/translations/lximage-qt_cy.qm
share/lximage-qt/translations/lximage-qt_da.qm
share/lximage-qt/translations/lximage-qt_de.qm
share/lximage-qt/translations/lximage-qt_de_CH.qm
share/lximage-qt/translations/lximage-qt_el.qm
share/lximage-qt/translations/lximage-qt_en_GB.qm
share/lximage-qt/translations/lximage-qt_es.qm
share/lximage-qt/translations/lximage-qt_et.qm
share/lximage-qt/translations/lximage-qt_fi.qm
share/lximage-qt/translations/lximage-qt_fr.qm
share/lximage-qt/translations/lximage-qt_gl.qm
share/lximage-qt/translations/lximage-qt_he.qm
share/lximage-qt/translations/lximage-qt_hi.qm
share/lximage-qt/translations/lximage-qt_hr.qm
share/lximage-qt/translations/lximage-qt_hu.qm
share/lximage-qt/translations/lximage-qt_id.qm
share/lximage-qt/translations/lximage-qt_is.qm
share/lximage-qt/translations/lximage-qt_it.qm
share/lximage-qt/translations/lximage-qt_ja.qm
share/lximage-qt/translations/lximage-qt_ko.qm
share/lximage-qt/translations/lximage-qt_lg.qm
share/lximage-qt/translations/lximage-qt_lt.qm
share/lximage-qt/translations/lximage-qt_nb_NO.qm
share/lximage-qt/translations/lximage-qt_nl.qm
share/lximage-qt/translations/lximage-qt_oc.qm
share/lximage-qt/translations/lximage-qt_pa.qm
share/lximage-qt/translations/lximage-qt_pl.qm
share/lximage-qt/translations/lximage-qt_pt.qm
share/lximage-qt/translations/lximage-qt_pt_BR.qm
share/lximage-qt/translations/lximage-qt_ru.qm
share/lximage-qt/translations/lximage-qt_si.qm
share/lximage-qt/translations/lximage-qt_sk.qm
share/lximage-qt/translations/lximage-qt_sl.qm
share/lximage-qt/translations/lximage-qt_sv.qm
share/lximage-qt/translations/lximage-qt_tr.qm
share/lximage-qt/translations/lximage-qt_uk.qm
share/lximage-qt/translations/lximage-qt_vi.qm
share/lximage-qt/translations/lximage-qt_zh_CN.qm
share/lximage-qt/translations/lximage-qt_zh_TW.qm
share/metainfo/lximage-qt.metainfo.xml

View File

@ -1,21 +1,18 @@
PORTNAME= lxqt-openssh-askpass
PORTVERSION= 1.4.0
PORTVERSION= 2.0.1
CATEGORIES= security
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= LXQt GUI dialog for OpenSSH authentication
WWW= https://lxqt-project.org
LICENSE= LGPL21+
USES= cmake compiler:c++11-lang gettext-runtime kde:5 lxqt \
perl5 pkgconfig qt:5 tar:xz gnome xorg
USES= cmake compiler:c++17-lang gettext-runtime lxqt:2 perl5 \
pkgconfig qt:6 tar:xz
USE_LXQT= buildtools2 lxqt
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui linguisttools \
svg widgets x11extras xml
USE_KDE= windowsystem
USE_LXQT= buildtools lxqt
USE_GNOME= glib20
USE_XORG= x11
USE_QT= base:run tools:build
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706384963
SHA256 (lxqt/lxqt-openssh-askpass-1.4.0.tar.xz) = 2ba6bcac5d90db846dce7895d03294126315ec20e59977f9f2faadf3e668c54a
SIZE (lxqt/lxqt-openssh-askpass-1.4.0.tar.xz) = 17628
TIMESTAMP = 1716077499
SHA256 (lxqt/lxqt-openssh-askpass-2.0.1.tar.xz) = 68ad3f6644a513a74f39f92981fb575480f0e2b38aca48f247856af0d474ab5f
SIZE (lxqt/lxqt-openssh-askpass-2.0.1.tar.xz) = 17856

View File

@ -1,2 +1,2 @@
lxqt-openssh-askpass is a GUI to query credentials on behalf of other programs.
lxqt2-openssh-askpass is a GUI to query credentials on behalf of other programs.
It is primarily targeted at ssh-agent.

View File

@ -22,10 +22,12 @@ bin/lxqt-openssh-askpass
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_ru.qm

View File

@ -1,24 +1,23 @@
PORTNAME= lxqt-sudo
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= security
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
COMMENT= GUI frontend to su/sudo for LXQt desktop
MAINTAINER= lxqt@FreeBSD.org
COMMENT= GUI frontend to su/sudo/doas for LXQt desktop
WWW= https://lxqt-project.org
LICENSE= LGPL21+
RUN_DEPENDS= sudo:security/sudo
USES= cmake gettext kde:5 lxqt qt:5 perl5 tar:xz gnome xorg
USES= cmake gettext kde:6 lxqt:2 qt:6 perl5 tar:xz gnome xorg
USE_PERL5= build
USE_QT= buildtools:build core dbus gui svg qmake:build widgets \
x11extras xml
USE_QT= base:run tools:build svg
USE_KDE= windowsystem
USE_LXQT= buildtools lxqt
USE_GNOME= glib20
USE_LXQT= buildtools2 lxqt
USE_XORG= x11
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706385287
SHA256 (lxqt/lxqt-sudo-1.4.0.tar.xz) = 076c7115f612b77ec8c05043df76df6acd7f9fe9132b253d6fb5ac2d72eb44ae
SIZE (lxqt/lxqt-sudo-1.4.0.tar.xz) = 37764
TIMESTAMP = 1714113191
SHA256 (lxqt/lxqt-sudo-2.0.0.tar.xz) = ea95134723d24dc2e2d862db8cdb36204653ea2d478bfe4f2c5de1f68955d215
SIZE (lxqt/lxqt-sudo-2.0.0.tar.xz) = 39164

View File

@ -1,3 +1,3 @@
lxqt-sudo and lxsu is a graphical front-end of commands
sudo and su respectively.
lxqt-sudo, lxdoas and lxsu are a graphical front-end of commands
sudo, doas and su respectively.
It enables regular users to launch applications with permissions of root.

View File

@ -24,10 +24,12 @@ bin/lxsudo
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_pt_BR.qm

View File

@ -3,14 +3,14 @@ PORTVERSION= 0.4.6
CATEGORIES= sysutils
MASTER_SITES= LXQT/${PORTNAME}
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Library used to query system info and statistics
WWW= https://lxqt-project.org
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/COPYING
USES= cmake compiler:c++11-lang lxqt pkgconfig tar:xz qt:5
USES= cmake compiler:c++17-lang lxqt:1 pkgconfig tar:xz qt:5
USE_QT= qmake:build buildtools:build core
USE_LXQT= buildtools
USE_LDCONFIG= yes

View File

@ -1,22 +1,23 @@
PORTNAME= lxqt-admin
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= sysutils
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= System administration tool for the LXQt desktop
WWW= https://lxqt-project.org
LICENSE= LGPL21+
USES= cmake compiler:c++11-lang gnome kde:5 localbase \
lxqt perl5 pkgconfig tar:xz qt:5 xorg
LIB_DEPENDS= libpolkit-qt6-core-1.so:sysutils/polkit-qt-1@qt6
USES= cmake compiler:c++17-lang gnome kde:6 localbase lxqt:2 \
perl5 pkgconfig tar:xz qt:6 xorg
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui svg \
widgets x11extras xml
USE_QT= base:run tools:build svg
USE_LXQT= buildtools2 lxqt
USE_KDE= windowsystem
USE_GNOME= glib20
USE_LXQT= buildtools lxqt
USE_XORG= x11
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706407980
SHA256 (lxqt/lxqt-admin-1.4.0.tar.xz) = dd1704050d5d6c462a22e3f58128b64ffc943e3767301ed24466f85790446b4c
SIZE (lxqt/lxqt-admin-1.4.0.tar.xz) = 152052
TIMESTAMP = 1714104169
SHA256 (lxqt/lxqt-admin-2.0.0.tar.xz) = 41d56028fd41290e265697f23497e94cfc2d303bcf7d834f5846fbe51654744b
SIZE (lxqt/lxqt-admin-2.0.0.tar.xz) = 154328

View File

@ -1,2 +1,2 @@
Admin tool for LXQt allowing editing and adding of
Admin tool for LXQt2 allowing editing and adding of
system users and groups.

View File

@ -17,6 +17,7 @@ share/applications/lxqt-admin-user.desktop
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_en_GB.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_es.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_et.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_fi.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_fr.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_gl.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_he.qm
@ -27,11 +28,13 @@ share/applications/lxqt-admin-user.desktop
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_pt_BR.qm
@ -56,6 +59,7 @@ share/applications/lxqt-admin-user.desktop
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_en_GB.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_es.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_et.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_fi.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_fr.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_gl.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_he.qm
@ -66,10 +70,12 @@ share/applications/lxqt-admin-user.desktop
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_pt_BR.qm

View File

@ -1,30 +1,31 @@
PORTNAME= lxqt-config
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= sysutils
MASTER_SITES= LXQT
DIST_SUBDIR= lxqt
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= LXQt system settings center
WWW= https://lxqt-project.org
LICENSE= GPLv2 LGPL21+
LICENSE_COMB= multi
BUILD_DEPENDS= lxqt-menu-data>=1.4.1:x11/lxqt-menu-data \
BUILD_DEPENDS= lxqt-menu-data>=2.0.0:x11/lxqt-menu-data \
${LOCALBASE}/lib/xorg/modules/input/libinput_drv.so:x11-drivers/xf86-input-libinput
RUN_DEPENDS= lxqt-menu-data>=1.4.1:x11/lxqt-menu-data
RUN_DEPENDS= lxqt-menu-data>=2.0.0:x11/lxqt-menu-data
LIB_DEPENDS= libudev.so:devel/libudev-devd
USES= cmake compiler:c++17-lang kde:5 localbase:ldflags \
lxqt qt:5 perl5 pkgconfig tar:xz xorg gnome
USE_QT= buildtools:build core dbus gui linguisttools svg qmake:build widgets x11extras xml
USES= cmake compiler:c++17-lang kde:6 localbase:ldflags lxqt:2 \
qt:6 perl5 pkgconfig tar:xz xorg gnome
USE_QT= base:run tools:build svg
USE_KDE= libkscreen windowsystem
USE_GNOME= glib20
USE_LXQT= buildtools lxqt
USE_PERL5= build
USE_XORG= ice sm x11 xcb xcursor xext xfixes xrandr xi
USE_LDCONFIG= yes
USE_LXQT= buildtools2 lxqt
CXXFLAGS+= -Wno-c++11-narrowing
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706384239
SHA256 (lxqt/lxqt-config-1.4.0.tar.xz) = e60d5c3f00588fb373b48fa0c65f7a164500738467359472409a29b9db11c84b
SIZE (lxqt/lxqt-config-1.4.0.tar.xz) = 371628
TIMESTAMP = 1714104935
SHA256 (lxqt/lxqt-config-2.0.0.tar.xz) = 091d4a1e177f732f6d6e9e66b2e117e0272272eaa73595290ad2ea05f0c4ac73
SIZE (lxqt/lxqt-config-2.0.0.tar.xz) = 380552

View File

@ -1,3 +1,3 @@
LXQt system settings center.
LXQt2 system settings center.
Includes applications to edit settings for appearance, brightness,
file-associations, input, locale and monitor.

View File

@ -45,10 +45,12 @@ share/icons/hicolor/48x48/apps/brightnesssettings.svg
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_pt_BR.qm
@ -79,6 +81,7 @@ share/icons/hicolor/48x48/apps/brightnesssettings.svg
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_en_GB.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_es.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_et.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_eu.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_fi.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_fr.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_gl.qm
@ -89,11 +92,13 @@ share/icons/hicolor/48x48/apps/brightnesssettings.svg
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_pt_BR.qm
@ -132,11 +137,13 @@ share/icons/hicolor/48x48/apps/brightnesssettings.svg
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_pt_BR.qm
@ -175,6 +182,7 @@ share/icons/hicolor/48x48/apps/brightnesssettings.svg
%%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_nb_NO.qm
@ -218,6 +226,7 @@ share/icons/hicolor/48x48/apps/brightnesssettings.svg
%%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_nl.qm
@ -259,11 +268,13 @@ share/icons/hicolor/48x48/apps/brightnesssettings.svg
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_pt_BR.qm
@ -299,10 +310,12 @@ share/icons/hicolor/48x48/apps/brightnesssettings.svg
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_pt_BR.qm
@ -343,11 +356,13 @@ share/icons/hicolor/48x48/apps/brightnesssettings.svg
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_pt_BR.qm

View File

@ -1,25 +1,23 @@
PORTNAME= lxqt-policykit
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= sysutils
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= PolicyKit authentication agent
WWW= https://lxqt-project.org
LICENSE= LGPL21+
LIB_DEPENDS= libpolkit-qt5-agent-1.so:sysutils/polkit-qt-1@qt5 \
LIB_DEPENDS= libpolkit-qt6-agent-1.so:sysutils/polkit-qt-1@qt6 \
libpolkit-agent-1.so:sysutils/polkit
USES= cmake compiler:c++14-lang gnome gettext-runtime kde:5 qt:5 perl5 \
localbase:ldflags lxqt pkgconfig tar:xz xorg
USES= cmake compiler:c++17-lang gnome gettext-runtime lxqt:2 \
qt:6 perl5 localbase:ldflags pkgconfig tar:xz xorg
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui linguisttools \
svg widgets x11extras xml
USE_KDE= windowsystem
USE_LXQT= buildtools lxqt
USE_QT= base:run tools:build
USE_LXQT= buildtools2 lxqt
USE_GNOME= glib20
USE_XORG= x11

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706385102
SHA256 (lxqt/lxqt-policykit-1.4.0.tar.xz) = 5ccce983f64d078d40b04b5efd3a5a764878dd28fc458430201a86bb55cc8485
SIZE (lxqt/lxqt-policykit-1.4.0.tar.xz) = 39612
TIMESTAMP = 1714108848
SHA256 (lxqt/lxqt-policykit-2.0.0.tar.xz) = 45c2ef396c860dada501f30dbe11ea9c029cbf9b2b8e6e8cce4c27512e43bc88
SIZE (lxqt/lxqt-policykit-2.0.0.tar.xz) = 39964

View File

@ -22,10 +22,12 @@ etc/xdg/autostart/lxqt-policykit-agent.desktop
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_ro.qm

View File

@ -1,9 +1,9 @@
PORTNAME= lxqt-powermanagement
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= sysutils
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= LXQt power management
WWW= https://github.com/lxqt/lxqt-powermanagement
@ -12,13 +12,12 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= upower:sysutils/upower
USES= cmake compiler:c++14-lang gettext-runtime kde:5 qt:5 \
localbase:ldflags lxqt perl5 pkgconfig tar:xz gnome xorg
USES= cmake compiler:c++17-lang gettext-runtime kde:6 lxqt:2 qt:6 \
localbase:ldflags perl5 pkgconfig tar:xz gnome xorg
USE_PERL5= build
USE_QT= buildtools:build qmake:build core svg widgets x11extras \
dbus gui xml
USE_QT= base:run tools:build svg
USE_GNOME= glib20
USE_KDE= idletime solid windowsystem
USE_LXQT= buildtools lxqt globalkeys
USE_LXQT= buildtools2 lxqt globalkeys
USE_XORG= x11
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706386963
SHA256 (lxqt/lxqt-powermanagement-1.4.0.tar.xz) = a0d4e3c429a138453606d3067d189e0d163ff61ceaa8239100b2997b2e0b532d
SIZE (lxqt/lxqt-powermanagement-1.4.0.tar.xz) = 93280
TIMESTAMP = 1714109066
SHA256 (lxqt/lxqt-powermanagement-2.0.0.tar.xz) = 300c4d50fd1fd78b57bd6a472eddbc7ab30ca3fb64650699184d4b07a8050b0e
SIZE (lxqt/lxqt-powermanagement-2.0.0.tar.xz) = 97220

View File

@ -25,10 +25,12 @@ share/icons/hicolor/scalable/devices/laptop-lid.svg
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_pt_BR.qm
@ -61,10 +63,12 @@ share/icons/hicolor/scalable/devices/laptop-lid.svg
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_pt_BR.qm

View File

@ -3,7 +3,7 @@ PORTVERSION= 1.4.0
CATEGORIES= sysutils
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= LXQt system integration plugin for Qt
WWW= https://lxqt-project.org
@ -12,13 +12,13 @@ LICENSE= LGPL21+
LIB_DEPENDS= libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 \
libexif.so:graphics/libexif
USES= cmake compiler:c++14-lang gnome kde:5 lxqt pkgconfig tar:xz qt:5 \
USES= cmake compiler:c++17-lang gnome kde:5 lxqt:1 pkgconfig tar:xz qt:5 \
gettext-runtime xorg
USE_XORG=xcb
USE_GNOME=glib20
USE_QT= buildtools:build qmake:build core dbus gui svg widgets \
x11extras xml
USE_QT= buildtools:build qmake:build core dbus gui svg widgets \
x11extras xml
USE_KDE= windowsystem
USE_LXQT= buildtools qtxdg libfmqt
USE_LDCONFIG= yes

View File

@ -1,17 +1,17 @@
PORTNAME= qtxdg-tools
PORTVERSION= 3.12.0
PORTVERSION= 4.0.0
CATEGORIES= sysutils
MASTER_SITES= LXQT/${PORTNAME}
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
COMMENT= User tools for libqtxdg
MAINTAINER= lxqt@FreeBSD.org
COMMENT= User tools for libqt6xdg
WWW= https://github.com/lxqt/qtxdg-tools
LICENSE= LGPL21+
USES= cmake compiler:c++14-lang gnome lxqt pkgconfig qt:5 tar:xz lxqt
USES= cmake compiler:c++17-lang gnome pkgconfig lxqt:2 qt:6 tar:xz
USE_GNOME= glib20
USE_QT= buildtools:build qmake:build core dbus gui svg widgets xml
USE_LXQT= buildtools qtxdg
USE_QT= tools:build base:run
USE_LXQT= buildtools2 qt6xdg
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706382982
SHA256 (lxqt/qtxdg-tools-3.12.0.tar.xz) = 8afba8c57647ccbec27964c021b1f317866bb93c7293f60319a340b6484bf883
SIZE (lxqt/qtxdg-tools-3.12.0.tar.xz) = 16740
TIMESTAMP = 1714114148
SHA256 (lxqt/qtxdg-tools-4.0.0.tar.xz) = 4cd485e2780290d99d7242f605db9f0ffe5ed598cc672ed5e4acef871ce27b3a
SIZE (lxqt/qtxdg-tools-4.0.0.tar.xz) = 16760

View File

@ -1,29 +1,27 @@
PORTNAME= pcmanfm-qt
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= x11-fm
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= LXQt file manager
WWW= https://github.com/lxde/pcmanfm-qt
LICENSE= GPLv2
LIB_DEPENDS= libmenu-cache.so:x11/menu-cache \
libfm-qt.so:x11/libfm-qt \
libfm-qt6.so:x11/libfm-qt6 \
libexif.so:graphics/libexif
RUN_DEPENDS= lxqt-menu-data>=1.4.1:x11/lxqt-menu-data
RUN_DEPENDS= lxqt-menu-data>=2.0.0:x11/lxqt-menu-data
USES= cmake compiler:c++17-lang gnome \
gettext-runtime localbase:ldflags lxqt perl5 pkgconfig kde:5 qt:5 \
USES= cmake compiler:c++17-lang gnome kde:6 gettext-runtime \
localbase:ldflags lxqt:2 perl5 pkgconfig qt:6 \
tar:xz xorg
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui linguisttools \
widgets x11extras
USE_KDE= oxygen-icons5
USE_LXQT= buildtools libfmqt
USE_GNOME= glib20
USE_QT= base:run tools:build svg
USE_KDE= layer-shell-qt
USE_LXQT= buildtools2 libfmqt6
USE_XORG= xcb
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706385411
SHA256 (lxqt/pcmanfm-qt-1.4.0.tar.xz) = b1c6abb3bd8dca6bd2290fab424fef73527d5a1bb60a67dfd20966545dfee443
SIZE (lxqt/pcmanfm-qt-1.4.0.tar.xz) = 377652
TIMESTAMP = 1716619646
SHA256 (lxqt/pcmanfm-qt-2.0.0.tar.xz) = 167958a19f0e826f77887d9b7453f69347e8c74c70ffbf64aeab5d7b4b63cc83
SIZE (lxqt/pcmanfm-qt-2.0.0.tar.xz) = 395756

View File

@ -18,6 +18,7 @@ share/man/man1/pcmanfm-qt.1.gz
%%DATADIR%%/translations/pcmanfm-qt_en_GB.qm
%%DATADIR%%/translations/pcmanfm-qt_es.qm
%%DATADIR%%/translations/pcmanfm-qt_et.qm
%%DATADIR%%/translations/pcmanfm-qt_eu.qm
%%DATADIR%%/translations/pcmanfm-qt_fi.qm
%%DATADIR%%/translations/pcmanfm-qt_fil.qm
%%DATADIR%%/translations/pcmanfm-qt_fr.qm
@ -32,6 +33,7 @@ share/man/man1/pcmanfm-qt.1.gz
%%DATADIR%%/translations/pcmanfm-qt_ja.qm
%%DATADIR%%/translations/pcmanfm-qt_kk.qm
%%DATADIR%%/translations/pcmanfm-qt_ko.qm
%%DATADIR%%/translations/pcmanfm-qt_lg.qm
%%DATADIR%%/translations/pcmanfm-qt_lt.qm
%%DATADIR%%/translations/pcmanfm-qt_lv.qm
%%DATADIR%%/translations/pcmanfm-qt_nb_NO.qm

View File

@ -1,15 +1,15 @@
PORTNAME= lxqt-themes
PORTVERSION= 1.2.0
PORTVERSION= 2.0.0
CATEGORIES= x11-themes
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Themes for the LXQt desktop
WWW= https://lxqt-project.org
LICENSE= LGPL21+
USES= lxqt cmake tar:xz perl5
USE_LXQT= buildtools
USES= cmake lxqt:2 tar:xz perl5
USE_LXQT= buildtools2
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1669576191
SHA256 (lxqt/lxqt-themes-1.2.0.tar.xz) = 1f11b4f020ad9ddd364dede14d855b6441729960a938324bb74c63d60f35a6f0
SIZE (lxqt/lxqt-themes-1.2.0.tar.xz) = 26646616
TIMESTAMP = 1714113311
SHA256 (lxqt/lxqt-themes-2.0.0.tar.xz) = 927aa0bd8ecf718c4a91e820277af12a24d329b99e9e7ca4868311c1de76911d
SIZE (lxqt/lxqt-themes-2.0.0.tar.xz) = 26649440

View File

@ -1,20 +1,20 @@
PORTNAME= qtermwidget
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= x11-toolkits
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Terminal widget for QTerminal
WWW= https://github.com/lxde/qtermwidget
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cmake compiler:c++11-lang gettext-runtime lxqt \
pkgconfig qt:5 tar:xz
USES= cmake compiler:c++17-lang gettext-runtime lxqt:2 \
pkgconfig qt:6 tar:xz
USE_LDCONFIG= yes
USE_QT= buildtools:build core gui qmake:build linguisttools widgets
USE_LXQT= buildtools
USE_QT= base:run tools:build
USE_LXQT= buildtools2
CMAKE_ARGS+= -DQTERMWIDGET_USE_UTEMPTER=ON

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706383709
SHA256 (lxqt/qtermwidget-1.4.0.tar.xz) = e7253065f74fa056843c95f9543e690bcaf7a03647ef5e02379eec4eb162026b
SIZE (lxqt/qtermwidget-1.4.0.tar.xz) = 190320
TIMESTAMP = 1716078552
SHA256 (lxqt/qtermwidget-2.0.0.tar.xz) = 33ff5c84b93f7a46e5255ae6a25e073093e0f80cc7dacf0233e01b643663f700
SIZE (lxqt/qtermwidget-2.0.0.tar.xz) = 191532

View File

@ -1,85 +1,86 @@
include/qtermwidget5/Emulation.h
include/qtermwidget5/Filter.h
include/qtermwidget5/KeyboardTranslator.h
include/qtermwidget5/qtermwidget.h
include/qtermwidget5/qtermwidget_export.h
include/qtermwidget5/qtermwidget_interface.h
include/qtermwidget5/qtermwidget_version.h
lib/cmake/qtermwidget5/qtermwidget5-config-version.cmake
lib/cmake/qtermwidget5/qtermwidget5-config.cmake
lib/cmake/qtermwidget5/qtermwidget5-targets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/qtermwidget5/qtermwidget5-targets.cmake
lib/libqtermwidget5.so
lib/libqtermwidget5.so.1
lib/libqtermwidget5.so.%%VERSION%%
libdata/pkgconfig/qtermwidget5.pc
%%DATADIR%%5/color-schemes/BlackOnLightYellow.colorscheme
%%DATADIR%%5/color-schemes/BlackOnRandomLight.colorscheme
%%DATADIR%%5/color-schemes/BlackOnWhite.colorscheme
%%DATADIR%%5/color-schemes/BreezeModified.colorscheme
%%DATADIR%%5/color-schemes/DarkPastels.colorscheme
%%DATADIR%%5/color-schemes/Falcon.colorscheme
%%DATADIR%%5/color-schemes/GreenOnBlack.colorscheme
%%DATADIR%%5/color-schemes/Linux.colorscheme
%%DATADIR%%5/color-schemes/Solarized.colorscheme
%%DATADIR%%5/color-schemes/SolarizedLight.colorscheme
%%DATADIR%%5/color-schemes/Tango.colorscheme
%%DATADIR%%5/color-schemes/Ubuntu.colorscheme
%%DATADIR%%5/color-schemes/WhiteOnBlack.colorscheme
%%DATADIR%%5/color-schemes/historic/BlackOnLightColor.schema
%%DATADIR%%5/color-schemes/historic/DarkPicture.schema
%%DATADIR%%5/color-schemes/historic/GreenOnBlack.schema
%%DATADIR%%5/color-schemes/historic/GreenTint.schema
%%DATADIR%%5/color-schemes/historic/GreenTint_MC.schema
%%DATADIR%%5/color-schemes/historic/LightPicture.schema
%%DATADIR%%5/color-schemes/historic/Linux.schema
%%DATADIR%%5/color-schemes/historic/Transparent.schema
%%DATADIR%%5/color-schemes/historic/Transparent_MC.schema
%%DATADIR%%5/color-schemes/historic/Transparent_darkbg.schema
%%DATADIR%%5/color-schemes/historic/Transparent_lightbg.schema
%%DATADIR%%5/color-schemes/historic/XTerm.schema
%%DATADIR%%5/color-schemes/historic/syscolor.schema
%%DATADIR%%5/color-schemes/historic/vim.schema
%%DATADIR%%5/kb-layouts/default.keytab
%%DATADIR%%5/kb-layouts/historic/vt100.keytab
%%DATADIR%%5/kb-layouts/historic/x11r5.keytab
%%DATADIR%%5/kb-layouts/linux.keytab
%%DATADIR%%5/kb-layouts/macbook.keytab
%%DATADIR%%5/kb-layouts/solaris.keytab
%%DATADIR%%5/kb-layouts/vt420pc.keytab
%%DATADIR%%5/translations/qtermwidget_ar.qm
%%DATADIR%%5/translations/qtermwidget_arn.qm
%%DATADIR%%5/translations/qtermwidget_ast.qm
%%DATADIR%%5/translations/qtermwidget_bg.qm
%%DATADIR%%5/translations/qtermwidget_ca.qm
%%DATADIR%%5/translations/qtermwidget_cs.qm
%%DATADIR%%5/translations/qtermwidget_cy.qm
%%DATADIR%%5/translations/qtermwidget_da.qm
%%DATADIR%%5/translations/qtermwidget_de.qm
%%DATADIR%%5/translations/qtermwidget_de_CH.qm
%%DATADIR%%5/translations/qtermwidget_el.qm
%%DATADIR%%5/translations/qtermwidget_es.qm
%%DATADIR%%5/translations/qtermwidget_et.qm
%%DATADIR%%5/translations/qtermwidget_fi.qm
%%DATADIR%%5/translations/qtermwidget_fr.qm
%%DATADIR%%5/translations/qtermwidget_gl.qm
%%DATADIR%%5/translations/qtermwidget_he.qm
%%DATADIR%%5/translations/qtermwidget_hr.qm
%%DATADIR%%5/translations/qtermwidget_hu.qm
%%DATADIR%%5/translations/qtermwidget_it.qm
%%DATADIR%%5/translations/qtermwidget_ja.qm
%%DATADIR%%5/translations/qtermwidget_ko.qm
%%DATADIR%%5/translations/qtermwidget_lt.qm
%%DATADIR%%5/translations/qtermwidget_nb_NO.qm
%%DATADIR%%5/translations/qtermwidget_nl.qm
%%DATADIR%%5/translations/qtermwidget_oc.qm
%%DATADIR%%5/translations/qtermwidget_pl.qm
%%DATADIR%%5/translations/qtermwidget_pt.qm
%%DATADIR%%5/translations/qtermwidget_pt_BR.qm
%%DATADIR%%5/translations/qtermwidget_ru.qm
%%DATADIR%%5/translations/qtermwidget_si.qm
%%DATADIR%%5/translations/qtermwidget_sk.qm
%%DATADIR%%5/translations/qtermwidget_tr.qm
%%DATADIR%%5/translations/qtermwidget_uk.qm
%%DATADIR%%5/translations/qtermwidget_zh_CN.qm
%%DATADIR%%5/translations/qtermwidget_zh_TW.qm
include/qtermwidget6/Emulation.h
include/qtermwidget6/Filter.h
include/qtermwidget6/KeyboardTranslator.h
include/qtermwidget6/qtermwidget.h
include/qtermwidget6/qtermwidget_export.h
include/qtermwidget6/qtermwidget_interface.h
include/qtermwidget6/qtermwidget_version.h
lib/cmake/qtermwidget6/qtermwidget6-config-version.cmake
lib/cmake/qtermwidget6/qtermwidget6-config.cmake
lib/cmake/qtermwidget6/qtermwidget6-targets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/qtermwidget6/qtermwidget6-targets.cmake
lib/libqtermwidget6.so
lib/libqtermwidget6.so.2
lib/libqtermwidget6.so.%%VERSION%%
libdata/pkgconfig/qtermwidget6.pc
%%DATADIR%%6/color-schemes/BlackOnLightYellow.colorscheme
%%DATADIR%%6/color-schemes/BlackOnRandomLight.colorscheme
%%DATADIR%%6/color-schemes/BlackOnWhite.colorscheme
%%DATADIR%%6/color-schemes/BreezeModified.colorscheme
%%DATADIR%%6/color-schemes/DarkPastels.colorscheme
%%DATADIR%%6/color-schemes/Falcon.colorscheme
%%DATADIR%%6/color-schemes/GreenOnBlack.colorscheme
%%DATADIR%%6/color-schemes/Linux.colorscheme
%%DATADIR%%6/color-schemes/Solarized.colorscheme
%%DATADIR%%6/color-schemes/SolarizedLight.colorscheme
%%DATADIR%%6/color-schemes/Tango.colorscheme
%%DATADIR%%6/color-schemes/Ubuntu.colorscheme
%%DATADIR%%6/color-schemes/WhiteOnBlack.colorscheme
%%DATADIR%%6/color-schemes/historic/BlackOnLightColor.schema
%%DATADIR%%6/color-schemes/historic/DarkPicture.schema
%%DATADIR%%6/color-schemes/historic/GreenOnBlack.schema
%%DATADIR%%6/color-schemes/historic/GreenTint.schema
%%DATADIR%%6/color-schemes/historic/GreenTint_MC.schema
%%DATADIR%%6/color-schemes/historic/LightPicture.schema
%%DATADIR%%6/color-schemes/historic/Linux.schema
%%DATADIR%%6/color-schemes/historic/Transparent.schema
%%DATADIR%%6/color-schemes/historic/Transparent_MC.schema
%%DATADIR%%6/color-schemes/historic/Transparent_darkbg.schema
%%DATADIR%%6/color-schemes/historic/Transparent_lightbg.schema
%%DATADIR%%6/color-schemes/historic/XTerm.schema
%%DATADIR%%6/color-schemes/historic/syscolor.schema
%%DATADIR%%6/color-schemes/historic/vim.schema
%%DATADIR%%6/kb-layouts/default.keytab
%%DATADIR%%6/kb-layouts/historic/vt100.keytab
%%DATADIR%%6/kb-layouts/historic/x11r5.keytab
%%DATADIR%%6/kb-layouts/linux.keytab
%%DATADIR%%6/kb-layouts/macbook.keytab
%%DATADIR%%6/kb-layouts/solaris.keytab
%%DATADIR%%6/kb-layouts/vt420pc.keytab
%%DATADIR%%6/translations/qtermwidget_ar.qm
%%DATADIR%%6/translations/qtermwidget_arn.qm
%%DATADIR%%6/translations/qtermwidget_ast.qm
%%DATADIR%%6/translations/qtermwidget_bg.qm
%%DATADIR%%6/translations/qtermwidget_ca.qm
%%DATADIR%%6/translations/qtermwidget_cs.qm
%%DATADIR%%6/translations/qtermwidget_cy.qm
%%DATADIR%%6/translations/qtermwidget_da.qm
%%DATADIR%%6/translations/qtermwidget_de.qm
%%DATADIR%%6/translations/qtermwidget_de_CH.qm
%%DATADIR%%6/translations/qtermwidget_el.qm
%%DATADIR%%6/translations/qtermwidget_es.qm
%%DATADIR%%6/translations/qtermwidget_et.qm
%%DATADIR%%6/translations/qtermwidget_fi.qm
%%DATADIR%%6/translations/qtermwidget_fr.qm
%%DATADIR%%6/translations/qtermwidget_gl.qm
%%DATADIR%%6/translations/qtermwidget_he.qm
%%DATADIR%%6/translations/qtermwidget_hr.qm
%%DATADIR%%6/translations/qtermwidget_hu.qm
%%DATADIR%%6/translations/qtermwidget_it.qm
%%DATADIR%%6/translations/qtermwidget_ja.qm
%%DATADIR%%6/translations/qtermwidget_ko.qm
%%DATADIR%%6/translations/qtermwidget_lg.qm
%%DATADIR%%6/translations/qtermwidget_lt.qm
%%DATADIR%%6/translations/qtermwidget_nb_NO.qm
%%DATADIR%%6/translations/qtermwidget_nl.qm
%%DATADIR%%6/translations/qtermwidget_oc.qm
%%DATADIR%%6/translations/qtermwidget_pl.qm
%%DATADIR%%6/translations/qtermwidget_pt.qm
%%DATADIR%%6/translations/qtermwidget_pt_BR.qm
%%DATADIR%%6/translations/qtermwidget_ru.qm
%%DATADIR%%6/translations/qtermwidget_si.qm
%%DATADIR%%6/translations/qtermwidget_sk.qm
%%DATADIR%%6/translations/qtermwidget_tr.qm
%%DATADIR%%6/translations/qtermwidget_uk.qm
%%DATADIR%%6/translations/qtermwidget_zh_CN.qm
%%DATADIR%%6/translations/qtermwidget_zh_TW.qm

View File

@ -1,30 +1,29 @@
PORTNAME= lxqt-panel
PORTVERSION= 1.4.0
PORTVERSION= 2.0.1
CATEGORIES= x11-wm
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
COMMENT= Panel for the LXQt desktop
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Panel for the LXQt2 desktop
WWW= https://lxqt-project.org
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 \
LIB_DEPENDS= libdbusmenu-lxqt.so:devel/libdbusmenu-lxqt \
libxkbcommon.so:x11/libxkbcommon \
libxcb-util.so:x11/xcb-util \
libsysstat-qt5.so:sysutils/libsysstat \
libsysstat-qt6.so:sysutils/libsysstat-qt6 \
libxcb-image.so:x11/xcb-util-image
BUILD_DEPENDS= lxqt-menu-data>=1.4.1:x11/lxqt-menu-data
RUN_DEPENDS= lxqt-menu-data>=1.4.1:x11/lxqt-menu-data
BUILD_DEPENDS= lxqt-menu-data>=2.0.0:x11/lxqt-menu-data
RUN_DEPENDS= lxqt-menu-data>=2.0.0:x11/lxqt-menu-data
USES= cmake compiler:c++17-lang gettext-runtime kde:5 qt:5 gnome \
localbase:ldflags lxqt perl5 pkgconfig tar:xz xorg
USES= cmake compiler:c++17-lang gettext-runtime kde:6 qt:6 gnome \
lxqt:2 localbase:ldflags perl5 pkgconfig tar:xz xorg
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui svg widgets \
xml concurrent
USE_KDE= windowsystem
USE_LXQT= buildtools lxqt globalkeys qtxdg
USE_QT= base:run tools:build svg
USE_KDE= layer-shell-qt windowsystem
USE_LXQT= buildtools2 lxqt globalkeys qt6xdg
USE_XORG= ice sm x11 xcb xcomposite xdamage xext xfixes xrender xtst
USE_GNOME= glib20
USE_LDCONFIG= yes

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706385978
SHA256 (lxqt/lxqt-panel-1.4.0.tar.xz) = 0e660c0397c96a28f0fcf316b20c72d203c85793a884e1487b3b14e3790defc9
SIZE (lxqt/lxqt-panel-1.4.0.tar.xz) = 612012
TIMESTAMP = 1715396679
SHA256 (lxqt/lxqt-panel-2.0.1.tar.xz) = 73483c36e411496f8e958b7e56ba8bb06ae0b4300a62cf4c4a78964da6a59407
SIZE (lxqt/lxqt-panel-2.0.1.tar.xz) = 662616

View File

@ -1,11 +1,11 @@
--- panel/resources/panel.conf.orig 2022-04-23 07:20:02 UTC
+++ panel/resources/panel.conf
--- panel/resources/panel.conf 2024-04-17 06:16:32.000000000 -0500
+++ panel/resources/panel.conf 2024-04-25 15:24:07.715937000 -0500
@@ -1,7 +1,7 @@
panels=panel1
[panel1]
-plugins=mainmenu,desktopswitch,quicklaunch,taskbar,statusnotifier,tray,mount,volume,worldclock,showdesktop
+plugins=mainmenu,desktopswitch,quicklaunch,taskbar,statusnotifier,tray,volume,worldclock,showdesktop
-plugins=fancymenu,desktopswitch,quicklaunch,taskbar,statusnotifier,tray,mount,volume,worldclock,showdesktop
+plugins=fancymenu,desktopswitch,quicklaunch,taskbar,statusnotifier,tray,volume,worldclock,showdesktop
position=Bottom
desktop=0

View File

@ -22,6 +22,7 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_SHAREDIR%%/lxqt-panel/desktopswitch.desktop
%%LXQT_SHAREDIR%%/lxqt-panel/directorymenu.desktop
%%LXQT_SHAREDIR%%/lxqt-panel/dom.desktop
%%LXQT_SHAREDIR%%/lxqt-panel/fancymenu.desktop
%%LXQT_SHAREDIR%%/lxqt-panel/kbindicator.desktop
%%LXQT_SHAREDIR%%/lxqt-panel/mainmenu.desktop
%%MOUNT%%%%LXQT_SHAREDIR%%/lxqt-panel/mount.desktop
@ -77,6 +78,7 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_SHAREDIR%%/panel/qeyes-types/Tango/tango-eye.png
%%LXQT_SHAREDIR%%/panel/qeyes-types/Tango/tango-pupil.png
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_ar.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_bg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_ca.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_et.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_fi.qm
@ -85,12 +87,17 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_hr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_ru.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_sk.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_sr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_tr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_zh_CN.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_ar.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_arn.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_ast.qm
@ -116,11 +123,13 @@ lib/lxqt-panel/libsysstat.so
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_it.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_ja.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_ko.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_lg.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_lt.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_lv.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_nb_NO.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_nl.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_oc.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_pa.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_pl.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_pt.qm
%%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_pt_BR.qm
@ -153,6 +162,7 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_nb_NO.qm
@ -196,11 +206,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_pt_BR.qm
@ -241,11 +253,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_ru.qm
@ -277,11 +291,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_pt_BR.qm
@ -294,6 +310,56 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_tr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_uk.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_zh_CN.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_ar.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_ast.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_bg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_ca.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_cs.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_cy.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_da.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_de.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_el.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_eo.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_es.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_es_UY.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_es_VE.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_et.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_eu.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_fi.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_fr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_gl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_he.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_hr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_hu.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_ia.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_id.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_pt_BR.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_ro_RO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_ru.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_si.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_sk_SK.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_sl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_sr@latin.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_sr_BA.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_sr_RS.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_th_TH.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_tr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_uk.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_zh_CN.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/fancymenu/fancymenu_zh_TW.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_ar.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_arn.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_ast.qm
@ -316,11 +382,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_ru.qm
@ -361,11 +429,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_pt_BR.qm
@ -412,11 +482,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_pt_BR.qm
@ -460,11 +532,13 @@ lib/lxqt-panel/libsysstat.so
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_it.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_ja.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_ko.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_lg.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_lt.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_lv.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_nb_NO.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_nl.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_oc.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_pa.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_pl.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_pt.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_pt_BR.qm
@ -481,16 +555,25 @@ lib/lxqt-panel/libsysstat.so
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_uk.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_zh_CN.qm
%%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_zh_TW.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_ar.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_bg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_et.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_fi.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_fr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_he.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_ru.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_sk.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_sr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_tr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/qeyes/qeyes_zh_CN.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_ar.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_arn.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_ast.qm
@ -517,11 +600,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_pt_BR.qm
@ -564,11 +649,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_pt_BR.qm
@ -607,11 +694,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_ru.qm
@ -640,11 +729,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_pt_BR.qm
@ -653,6 +744,7 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_sk_SK.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_tr.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_uk.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_zh_CN.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_zh_TW.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_ar.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_arn.qm
@ -676,11 +768,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_pt_BR.qm
@ -716,11 +810,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_pt_BR.qm
@ -762,11 +858,13 @@ lib/lxqt-panel/libsysstat.so
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_it.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_ja.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_ko.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_lg.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_lt.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_lv.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_nb_NO.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_nl.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_oc.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_pa.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_pl.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_pt.qm
%%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_pt_BR.qm
@ -803,11 +901,13 @@ lib/lxqt-panel/libsysstat.so
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_pt_BR.qm

View File

@ -1,9 +1,9 @@
PORTNAME= lxqt-session
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= x11-wm
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Session manager component for LXQt
WWW= https://github.com/lxqt/lxqt-session/
@ -12,17 +12,17 @@ LICENSE= LGPL21+
BUILD_DEPENDS= xdg-user-dirs-update:devel/xdg-user-dirs \
qtxdg-mat:sysutils/qtxdg-tools
USES= cmake kde:5 lxqt perl5 pkgconfig qt:5 \
tar:xz xorg gnome
USE_QT= buildtools:build core dbus gui linguisttools qmake:build \
svg widgets x11extras xml
USE_KDE= windowsystem
USE_LXQT= buildtools lxqt qtxdg
USES= cmake kde:6 localbase:ldflags perl5 pkgconfig lxqt:2 qt:6 \
tar:xz xorg gnome
USE_QT= tools:build base:run svg
USE_KDE= layer-shell-qt windowsystem
USE_PERL5= build
USE_XORG= x11 ice sm xcb xext
USE_GNOME= glib20
USE_LXQT= buildtools2 lxqt qt6xdg
CMAKE_OFF= WITH_LIBUDEV
post-patch:
@${REINPLACE_CMD} -e 's|\@PREDEF_XDG_CONFIG_DIRS\@|\@PREDEF_XDG_CONFIG_DIRS\@:\${LOCALBASE}/share|g' ${WRKSRC}/startlxqt.in

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706385204
SHA256 (lxqt/lxqt-session-1.4.0.tar.xz) = 9dcdc846601f1972d01429f2203d36976088edcca5c166eef2b21ad73fcef656
SIZE (lxqt/lxqt-session-1.4.0.tar.xz) = 188324
TIMESTAMP = 1714112858
SHA256 (lxqt/lxqt-session-2.0.0.tar.xz) = 74ea3b998fecb50834b8b09952c31a1bf128fde9f7cfdd31284f7397665cb428
SIZE (lxqt/lxqt-session-2.0.0.tar.xz) = 194480

View File

@ -0,0 +1,16 @@
--- startlxqt.in.orig 2024-06-12 16:03:13 UTC
+++ startlxqt.in
@@ -6,6 +6,13 @@ contains()
[ "$str" = "$substr" -o -z "${str##$substr:*}" -o -z "${str##*:$substr:*}" -o -z "${str%%*:$substr}" ]
}
+if [ -f /var/db/zoneinfo ]; then TZ=`cat /var/db/zoneinfo`;
+ cmp -s /usr/share/zoneinfo/$TZ /etc/localtime
+ if [ $? -eq 0 ]; then
+ export TZ="${TZ}"
+ fi
+fi
+
if [ -z "$XDG_DATA_HOME" ]; then
export XDG_DATA_HOME="$HOME/.local/share"
fi

View File

@ -40,10 +40,12 @@ share/applications/lxqt-suspend.desktop
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_pt_BR.qm
@ -82,10 +84,12 @@ share/applications/lxqt-suspend.desktop
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_pt_BR.qm
@ -126,11 +130,13 @@ share/applications/lxqt-suspend.desktop
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_kk.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_or.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_pt_BR.qm

View File

@ -1,8 +1,8 @@
PORTNAME= lxqt
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= x11-wm
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Meta-port for the LXQt Desktop
WWW= https://lxqt-project.org
@ -10,8 +10,9 @@ RUN_DEPENDS= startlxqt:x11-wm/lxqt-session \
lxqt-about>=${PORTVERSION}:x11/lxqt-about \
lxqt-admin>=${PORTVERSION}:sysutils/lxqt-admin \
lxqt-config>=${PORTVERSION}:sysutils/lxqt-config \
lxqt-qtplugin>=${PORTVERSION}:sysutils/lxqt-qtplugin \
qterminal>=${PORTVERSION}:x11/qterminal \
lxqt-qtplugin>=1.4.0:sysutils/lxqt-qtplugin \
lxqt-qt6plugin>=${PORTVERSION}:sysutils/lxqt-qt6plugin \
qterminal>=2.0.0:x11/qterminal \
obconf-qt>=0.16.4:x11-wm/obconf-qt \
lximage-qt>=${PORTVERSION}:graphics/lximage-qt \
lxqt-panel>=${PORTVERSION}:x11-wm/lxqt-panel \
@ -19,8 +20,8 @@ RUN_DEPENDS= startlxqt:x11-wm/lxqt-session \
lxqt-powermanagement>=${PORTVERSION}:sysutils/lxqt-powermanagement \
${PREFIX}/share/lxqt/themes/frost/lxqt-panel.qss:x11-themes/lxqt-themes \
pcmanfm-qt>=${PORTVERSION}:x11-fm/pcmanfm-qt \
screengrab>=2.7.0:x11/screengrab \
lxqt-archiver>=0.9.0:archivers/lxqt-archiver \
screengrab>=2.8.0:x11/screengrab \
lxqt-archiver>=1.0.0:archivers/lxqt-archiver \
lxqt-notificationd>=${PORTVERSION}:deskutils/lxqt-notificationd \
lxqt-panel>=${PORTVERSION}:x11-wm/lxqt-panel \
lxqt-policykit>=${PORTVERSION}:sysutils/lxqt-policykit \
@ -35,7 +36,7 @@ OPTIONS_DEFAULT= EDITOR SSH SUDO
EDITOR_DESC= Install plain-text editor
SSH_DESC= GUI passphrase entry dialog for ssh-agent
SUDO_DESC= GUI frontend (Qt5) to sudo/su
SUDO_DESC= GUI frontend (Qt6) to sudo/su
EDITOR_RUN_DEPENDS= featherpad:editors/featherpad
SSH_RUN_DEPENDS= lxqt-openssh-askpass:security/lxqt-openssh-askpass

View File

@ -3,7 +3,7 @@ PORTVERSION= 0.16.4
CATEGORIES= x11-wm
MASTER_SITES= LXQT/${PORTNAME}
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Qt port of preferences manager for Openbox
WWW= https://github.com/lxqt/obconf-qt
@ -16,7 +16,7 @@ LIB_DEPENDS= libobt.so:x11-wm/openbox \
libharfbuzz.so:print/harfbuzz
USES= cmake compiler:c++11-lang gettext-runtime localbase qt:5 \
gnome lxqt perl5 pkgconfig tar:xz xorg
gnome lxqt:1 perl5 pkgconfig tar:xz xorg
USE_PERL5= build

View File

@ -1,10 +1,10 @@
PORTNAME= compton-conf
PORTVERSION= 0.16.0
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= x11
MASTER_SITES= LXQT/${PORTNAME}
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Controls compton settings
WWW= https://github.com/lxqt/compton-conf
@ -13,7 +13,7 @@ LICENSE= LGPL21+
LIB_DEPENDS= libconfig.so:devel/libconfig
RUN_DEPENDS= compton:x11-wm/compton
USES= cmake compiler:c++14-lang localbase:ldflags lxqt perl5 qt:5 \
USES= cmake compiler:c++14-lang localbase:ldflags lxqt:1 perl5 qt:5 \
pkgconfig tar:xz
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui linguisttools \

View File

@ -3,7 +3,7 @@ PORTVERSION= 1.4.0
CATEGORIES= x11
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Qt port of libfm
WWW= https://github.com/lxqt/libfm-qt
@ -15,7 +15,7 @@ LIB_DEPENDS= libmenu-cache.so:x11/menu-cache \
BUILD_DEPENDS= lxqt-menu-data>=1.4.1:x11/lxqt-menu-data
RUN_DEPENDS= lxqt-menu-data>=1.4.1:x11/lxqt-menu-data
USES= cmake compiler:c++14-lang gettext-runtime lxqt perl5 pkgconfig \
USES= cmake compiler:c++14-lang gettext-runtime lxqt:1 perl5 pkgconfig \
qt:5 gnome shared-mime-info tar:xz xorg
USE_PERL5= build
USE_QT= buildtools:build qmake:build core gui linguisttools widgets \

View File

@ -1,23 +1,21 @@
PORTNAME= lxqt-about
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= x11
MASTER_SITES= LXQT
DIST_SUBDIR= lxqt
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= About dialog of LXQt
WWW= https://lxqt-project.org
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/COPYING
USES= cmake compiler:c++11-lang kde:5 lxqt perl5 pkgconfig tar:xz qt:5 gnome xorg
USES= cmake compiler:c++17-lang kde:6 lxqt:2 perl5 pkgconfig tar:xz qt:6 gnome xorg
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui svg widgets \
x11extras xml
USE_QT= base:run tools:build svg
USE_XORG= x11
USE_KDE= windowsystem
USE_GNOME= glib20
USE_LXQT= buildtools lxqt
USE_LXQT= buildtools2 lxqt
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706383985
SHA256 (lxqt/lxqt-about-1.4.0.tar.xz) = b5ec828bb3b7de2ed82708719843608f0acc855eb09a85cb1670bfa06049b12e
SIZE (lxqt/lxqt-about-1.4.0.tar.xz) = 46556
TIMESTAMP = 1714103988
SHA256 (lxqt/lxqt-about-2.0.0.tar.xz) = 134c96c107d09f737dcc06bba9bbfac91d6bcca43f69efee65341ed275cf8247
SIZE (lxqt/lxqt-about-2.0.0.tar.xz) = 47936

View File

@ -30,11 +30,13 @@ share/icons/hicolor/scalable/apps/lxqt-about.svg
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_pt_BR.qm

View File

@ -1,23 +1,23 @@
PORTNAME= lxqt-globalkeys
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= x11
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Global keyboard shortcuts registration
WWW= https://lxqt-project.org
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cmake compiler:c++14-lang kde:5 xorg lxqt perl5 pkgconfig qt:5 tar:xz gnome
USES= cmake compiler:c++17-lang kde:6 xorg lxqt:2 perl5 pkgconfig qt:6 \
tar:xz gnome
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui linguisttools \
svg widgets x11extras xml
USE_QT= base:run tools:build
USE_KDE= windowsystem
USE_LXQT= buildtools lxqt
USE_GNOME= glib20
USE_XORG= ice sm x11 xext
USE_LDCONFIG= yes
USE_LXQT= buildtools2 lxqt
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706384800
SHA256 (lxqt/lxqt-globalkeys-1.4.0.tar.xz) = ffed3e299d11b3b6298bf5558cff9ba2b979d6d7a5cad72af0ae640a991b6203
SIZE (lxqt/lxqt-globalkeys-1.4.0.tar.xz) = 74028
TIMESTAMP = 1714105847
SHA256 (lxqt/lxqt-globalkeys-2.0.0.tar.xz) = 13e7a72686890a40b65d8ae13c79ed287eb971fbc0285769c40c8b97e7af43f7
SIZE (lxqt/lxqt-globalkeys-2.0.0.tar.xz) = 74832

View File

@ -12,10 +12,10 @@ etc/xdg/autostart/lxqt-globalkeyshortcuts.desktop
%%LXQT_INCLUDEDIR%%-globalkeys/lxqt-globalkeys.h
%%LXQT_INCLUDEDIR%%-globalkeys/lxqtglobalkeys.h
lib/liblxqt-globalkeys-ui.so
lib/liblxqt-globalkeys-ui.so.1
lib/liblxqt-globalkeys-ui.so.2
lib/liblxqt-globalkeys-ui.so.%%VERSION%%
lib/liblxqt-globalkeys.so
lib/liblxqt-globalkeys.so.1
lib/liblxqt-globalkeys.so.2
lib/liblxqt-globalkeys.so.%%VERSION%%
libdata/pkgconfig/lxqt-globalkeys-ui.pc
libdata/pkgconfig/lxqt-globalkeys.pc
@ -55,6 +55,7 @@ share/cmake/lxqt-globalkeys/lxqt-globalkeys-targets.cmake
%%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_lv.qm
%%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_nb_NO.qm

View File

@ -1,23 +1,19 @@
PORTNAME= lxqt-menu-data
PORTVERSION= 1.4.1
PORTVERSION= 2.0.0
CATEGORIES= x11
MASTER_SITES= LXQT
DIST_SUBDIR= lxqt
MAINTAINER= wen@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Freedesktop.org compliant menu files for lxqt
WWW= https://lxqt-project.org
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cmake compiler:c++11-lang kde:5 lxqt perl5 pkgconfig tar:xz qt:5 gnome xorg
USES= cmake lxqt:2 qt:6 tar:xz
USE_QT= buildtools:build qmake:build core dbus gui svg widgets \
x11extras xml
USE_XORG= x11
USE_KDE= windowsystem
USE_GNOME= glib20
USE_LXQT= buildtools lxqt
USE_QT= tools:build
USE_LXQT= buildtools2
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1709000015
SHA256 (lxqt/lxqt-menu-data-1.4.1.tar.xz) = 87b4d372afcf61ec2272ceb5eedba873d8a8a73e5b239a55446b52950b72d596
SIZE (lxqt/lxqt-menu-data-1.4.1.tar.xz) = 54632
TIMESTAMP = 1714105089
SHA256 (lxqt/lxqt-menu-data-2.0.0.tar.xz) = 44768dd5dcc7c66fadd919ddd8528e22dd7ee587ef198b02dffbf05e0c0d1a52
SIZE (lxqt/lxqt-menu-data-2.0.0.tar.xz) = 54908

View File

@ -1,9 +1,9 @@
PORTNAME= lxqt-runner
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= x11
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= LXQt tool used to launch programs quickly
WWW= https://lxqt-project.org
@ -12,15 +12,15 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libmuparser.so:math/muparser
USES= cmake compiler:c++14-lang gettext-runtime kde:5 qt:5 \
gnome localbase lxqt perl5 pkgconfig tar:xz xorg
USES= cmake compiler:c++17-lang gettext-runtime kde:6 lxqt:2 qt:6 \
gnome localbase perl5 pkgconfig tar:xz xorg
USE_PERL5= build
USE_QT= buildtools:build qmake:build core dbus gui linguisttools \
script svg widgets x11extras xml
USE_KDE= windowsystem \
USE_QT= base:run tools:build svg
USE_KDE= layer-shell-qt \
windowsystem \
ecm:build
USE_GNOME= glib20
USE_LXQT= buildtools globalkeys qtxdg
USE_LXQT= buildtools2 globalkeys qt6xdg
USE_XORG= x11
CMAKE_ARGS= -DRUNNER_VBOX:BOOL=OFF

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706387044
SHA256 (lxqt/lxqt-runner-1.4.0.tar.xz) = d59fc6da61b6fde1f4c36216f7e18e157f6b8a2a48cdf6bb26380443494152d2
SIZE (lxqt/lxqt-runner-1.4.0.tar.xz) = 224920
TIMESTAMP = 1714112685
SHA256 (lxqt/lxqt-runner-2.0.0.tar.xz) = 9f8031d780304d1c3b2c9b56a27744341c5e81d7cf2155bac959eaa6929e949c
SIZE (lxqt/lxqt-runner-2.0.0.tar.xz) = 226344

View File

@ -19,18 +19,20 @@ etc/xdg/autostart/lxqt-runner.desktop
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_fr.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_gl.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_he.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_hi.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_hr.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_hu.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_ia.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_id.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_it.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_hi.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_ja.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_ko.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_lg.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_lt.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_nb_NO.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_nl.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_oc.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_pa.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_pl.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_pt.qm
%%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_pt_BR.qm

View File

@ -1,24 +1,23 @@
PORTNAME= qterminal
PORTVERSION= 1.4.0
PORTVERSION= 2.0.0
CATEGORIES= x11
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Lightweight Qt-based terminal emulator
WWW= https://github.com/lxqt/qterminal
LICENSE= GPLv2
LIB_DEPENDS= libqtermwidget5.so:x11-toolkits/qtermwidget
LIB_DEPENDS= libqtermwidget6.so:x11-toolkits/qtermwidget
RUN_DEPENDS= liberation-fonts-ttf>=2.00:x11-fonts/liberation-fonts-ttf
USES= cmake compiler:c++11-lang gettext-runtime \
localbase:ldflags lxqt perl5 pkgconfig qt:5 tar:xz xorg
USES= cmake compiler:c++17-lang gettext-runtime \
localbase:ldflags lxqt:2 perl5 pkgconfig qt:6 tar:xz xorg
CMAKE_OFF= BUILD_TESTS
USE_PERL5= build
USE_QT= buildtools:build core gui qmake:build dbus linguisttools \
widgets x11extras
USE_QT= base:run tools:build
USE_XORG= x11
USE_LXQT= buildtools
USE_LXQT= buildtools2
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706385546
SHA256 (lxqt/qterminal-1.4.0.tar.xz) = 8313326ac3ef728924271cd60a8f79e17e5e755a6bfa4e4419a4b7a53528659f
SIZE (lxqt/qterminal-1.4.0.tar.xz) = 219500
TIMESTAMP = 1716078981
SHA256 (lxqt/qterminal-2.0.0.tar.xz) = 28f00a5c8c31d9108a54b7dcbf87d46f14e460492d2c56e3ecf5b5c3bba4059f
SIZE (lxqt/qterminal-2.0.0.tar.xz) = 228584

View File

@ -30,10 +30,12 @@ share/metainfo/qterminal.metainfo.xml
%%DATADIR%%/translations/qterminal_ja.qm
%%DATADIR%%/translations/qterminal_kk.qm
%%DATADIR%%/translations/qterminal_ko_KR.qm
%%DATADIR%%/translations/qterminal_lg.qm
%%DATADIR%%/translations/qterminal_lt.qm
%%DATADIR%%/translations/qterminal_nb_NO.qm
%%DATADIR%%/translations/qterminal_nl.qm
%%DATADIR%%/translations/qterminal_oc.qm
%%DATADIR%%/translations/qterminal_pa.qm
%%DATADIR%%/translations/qterminal_pl.qm
%%DATADIR%%/translations/qterminal_pt.qm
%%DATADIR%%/translations/qterminal_pt_BR.qm

View File

@ -1,20 +1,20 @@
PORTNAME= screengrab
PORTVERSION= 2.7.0
PORTVERSION= 2.8.0
CATEGORIES= x11
MASTER_SITES= LXQT
MAINTAINER= jsm@FreeBSD.org
MAINTAINER= lxqt@FreeBSD.org
COMMENT= Screen dump utility
WWW= https://github.com/lxqt/screengrab
LICENSE= LGPL21+
USES= cmake compiler:c++11-lang gnome kde:5 lxqt perl5 qt:5 tar:xz xorg
USE_LXQT= qtxdg
USES= cmake compiler:c++17-lang gnome kde:6 lxqt:2 perl5 qt:6 tar:xz xorg
USE_LXQT= qt6xdg
USE_XORG= x11 xcb sm ice xext
USE_KDE= windowsystem
USE_PERL5= build
USE_QT= buildtools qmake core dbus xml svg widgets gui x11extras network
USE_QT= base:run tools:build svg
USE_GNOME= glib20
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1706383806
SHA256 (lxqt/screengrab-2.7.0.tar.xz) = df1ec77d4a64cd7af0b54edd46499aaa92210c4fbb82d7a45de4500f011bbd85
SIZE (lxqt/screengrab-2.7.0.tar.xz) = 341696
TIMESTAMP = 1714114363
SHA256 (lxqt/screengrab-2.8.0.tar.xz) = 4c646ee834d49dd51aba5512f24b626d5178e6decd70f9bd2af6ed93ac7ba8b3
SIZE (lxqt/screengrab-2.8.0.tar.xz) = 345980

View File

@ -27,10 +27,12 @@ share/metainfo/screengrab.metainfo.xml
%%DATADIR%%/translations/screengrab_it.qm
%%DATADIR%%/translations/screengrab_ja.qm
%%DATADIR%%/translations/screengrab_ko.qm
%%DATADIR%%/translations/screengrab_lg.qm
%%DATADIR%%/translations/screengrab_lt.qm
%%DATADIR%%/translations/screengrab_nb_NO.qm
%%DATADIR%%/translations/screengrab_nl.qm
%%DATADIR%%/translations/screengrab_oc.qm
%%DATADIR%%/translations/screengrab_pa.qm
%%DATADIR%%/translations/screengrab_pl.qm
%%DATADIR%%/translations/screengrab_pt.qm
%%DATADIR%%/translations/screengrab_pt_BR.qm