diff --git a/Mk/Uses/lxqt.mk b/Mk/Uses/lxqt.mk index 035c2d5e0174..135472777a7a 100644 --- a/Mk/Uses/lxqt.mk +++ b/Mk/Uses/lxqt.mk @@ -1,105 +1,121 @@ # This file contains some variable definitions that are supposed to make your # 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: +# 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+= \ https://github.com/lxqt/%SUBDIR%/releases/download/${PORTVERSION}/ \ https://downloads.lxqt.org/downloads/%SUBDIR%/${PORTVERSION}/ 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" \ LXQT_SHAREDIR="share/lxqt" \ LXQT_TRANSLATIONS="share/lxqt/translations" \ VERSION="${PORTVERSION}" 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) # First, expand all USE_LXQT_REQ recursively. . for comp in ${_USE_LXQT_ALL} . for subcomp in ${${comp}_USE_LXQT_REQ} ${comp}_USE_LXQT_REQ+= ${${subcomp}_USE_LXQT_REQ} . endfor . endfor # Then, use already expanded USE_LXQT_REQ to expand USE_LXQT. . for comp in ${USE_LXQT} . if empty(_USE_LXQT_ALL:M${comp}) IGNORE= cannot install: Unknown component ${comp} . else _USE_LXQT+= ${${comp}_USE_LXQT_REQ} ${comp} . endif . endfor # Remove duplicate components USE_LXQT= ${_USE_LXQT:O:u} . for comp in ${USE_LXQT} . if defined(${comp}_BUILD_DEPENDS) BUILD_DEPENDS+= ${${comp}_BUILD_DEPENDS} . endif . if defined(${comp}_LIB_DEPENDS) LIB_DEPENDS+= ${${comp}_LIB_DEPENDS} . endif . if defined(${comp}_RUN_DEPENDS) RUN_DEPENDS+= ${${comp}_RUN_DEPENDS} . endif . endfor . endif # end of defined(USE_LXQT) .endif # end of !defined(_INCLUDE_USES_LXQT_MK) .if defined(_POSTMKINCLUDED) && !defined(_INCLUDE_USES_LXQT_POST_MK) _INCLUDE_USES_LXQT_POST_MK= yes .endif diff --git a/archivers/lxqt-archiver/Makefile b/archivers/lxqt-archiver/Makefile index 423836ef9c12..6404616815df 100644 --- a/archivers/lxqt-archiver/Makefile +++ b/archivers/lxqt-archiver/Makefile @@ -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 diff --git a/archivers/lxqt-archiver/distinfo b/archivers/lxqt-archiver/distinfo index b6640d67b86f..9449019df147 100644 --- a/archivers/lxqt-archiver/distinfo +++ b/archivers/lxqt-archiver/distinfo @@ -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 diff --git a/archivers/lxqt-archiver/pkg-descr b/archivers/lxqt-archiver/pkg-descr index 8400ca22c6ed..c7a480bab775 100644 --- a/archivers/lxqt-archiver/pkg-descr +++ b/archivers/lxqt-archiver/pkg-descr @@ -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 diff --git a/archivers/lxqt-archiver/pkg-plist b/archivers/lxqt-archiver/pkg-plist index 55b7a9d0547d..bcf60d49e2a9 100644 --- a/archivers/lxqt-archiver/pkg-plist +++ b/archivers/lxqt-archiver/pkg-plist @@ -1,41 +1,44 @@ bin/lxqt-archiver share/applications/lxqt-archiver.desktop share/icons/hicolor/scalable/apps/lxqt-archiver.svg %%DATADIR%%/translations/lxqt-archiver_ar.qm %%DATADIR%%/translations/lxqt-archiver_arn.qm %%DATADIR%%/translations/lxqt-archiver_ast.qm %%DATADIR%%/translations/lxqt-archiver_bg.qm %%DATADIR%%/translations/lxqt-archiver_ca.qm %%DATADIR%%/translations/lxqt-archiver_cs.qm %%DATADIR%%/translations/lxqt-archiver_cy.qm %%DATADIR%%/translations/lxqt-archiver_de.qm %%DATADIR%%/translations/lxqt-archiver_el.qm %%DATADIR%%/translations/lxqt-archiver_en_GB.qm %%DATADIR%%/translations/lxqt-archiver_es.qm %%DATADIR%%/translations/lxqt-archiver_et.qm %%DATADIR%%/translations/lxqt-archiver_fi.qm %%DATADIR%%/translations/lxqt-archiver_fr.qm %%DATADIR%%/translations/lxqt-archiver_gl.qm %%DATADIR%%/translations/lxqt-archiver_he.qm %%DATADIR%%/translations/lxqt-archiver_hr.qm %%DATADIR%%/translations/lxqt-archiver_hu.qm %%DATADIR%%/translations/lxqt-archiver_id.qm %%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 %%DATADIR%%/translations/lxqt-archiver_ru.qm %%DATADIR%%/translations/lxqt-archiver_si.qm %%DATADIR%%/translations/lxqt-archiver_sk.qm %%DATADIR%%/translations/lxqt-archiver_sl.qm %%DATADIR%%/translations/lxqt-archiver_sv.qm %%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 diff --git a/audio/pavucontrol-qt/Makefile b/audio/pavucontrol-qt/Makefile index 4e0335ac31f2..c89a1f257b26 100644 --- a/audio/pavucontrol-qt/Makefile +++ b/audio/pavucontrol-qt/Makefile @@ -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 diff --git a/audio/pavucontrol-qt/distinfo b/audio/pavucontrol-qt/distinfo index 9d518107a140..23963df1124a 100644 --- a/audio/pavucontrol-qt/distinfo +++ b/audio/pavucontrol-qt/distinfo @@ -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 diff --git a/audio/pavucontrol-qt/pkg-plist b/audio/pavucontrol-qt/pkg-plist index 869d320be57e..6307ff639ecd 100644 --- a/audio/pavucontrol-qt/pkg-plist +++ b/audio/pavucontrol-qt/pkg-plist @@ -1,54 +1,55 @@ bin/pavucontrol-qt share/applications/pavucontrol-qt.desktop %%DATADIR%%/translations/pavucontrol-qt_ar.qm %%DATADIR%%/translations/pavucontrol-qt_arn.qm %%DATADIR%%/translations/pavucontrol-qt_as.qm %%DATADIR%%/translations/pavucontrol-qt_ast.qm %%DATADIR%%/translations/pavucontrol-qt_bg.qm %%DATADIR%%/translations/pavucontrol-qt_bn_IN.qm %%DATADIR%%/translations/pavucontrol-qt_ca.qm %%DATADIR%%/translations/pavucontrol-qt_cs.qm %%DATADIR%%/translations/pavucontrol-qt_cy.qm %%DATADIR%%/translations/pavucontrol-qt_da.qm %%DATADIR%%/translations/pavucontrol-qt_de.qm %%DATADIR%%/translations/pavucontrol-qt_el.qm %%DATADIR%%/translations/pavucontrol-qt_es.qm %%DATADIR%%/translations/pavucontrol-qt_et.qm %%DATADIR%%/translations/pavucontrol-qt_fi.qm %%DATADIR%%/translations/pavucontrol-qt_fr.qm %%DATADIR%%/translations/pavucontrol-qt_gl.qm %%DATADIR%%/translations/pavucontrol-qt_gu.qm %%DATADIR%%/translations/pavucontrol-qt_he.qm %%DATADIR%%/translations/pavucontrol-qt_hi.qm %%DATADIR%%/translations/pavucontrol-qt_hr.qm %%DATADIR%%/translations/pavucontrol-qt_hu.qm %%DATADIR%%/translations/pavucontrol-qt_id.qm %%DATADIR%%/translations/pavucontrol-qt_it.qm %%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 %%DATADIR%%/translations/pavucontrol-qt_nb_NO.qm %%DATADIR%%/translations/pavucontrol-qt_nl.qm %%DATADIR%%/translations/pavucontrol-qt_oc.qm %%DATADIR%%/translations/pavucontrol-qt_or.qm %%DATADIR%%/translations/pavucontrol-qt_pa.qm %%DATADIR%%/translations/pavucontrol-qt_pl.qm %%DATADIR%%/translations/pavucontrol-qt_pt.qm %%DATADIR%%/translations/pavucontrol-qt_pt_BR.qm %%DATADIR%%/translations/pavucontrol-qt_ro.qm %%DATADIR%%/translations/pavucontrol-qt_ru.qm %%DATADIR%%/translations/pavucontrol-qt_si.qm %%DATADIR%%/translations/pavucontrol-qt_sk.qm %%DATADIR%%/translations/pavucontrol-qt_sr.qm %%DATADIR%%/translations/pavucontrol-qt_sr@latin.qm %%DATADIR%%/translations/pavucontrol-qt_sv.qm %%DATADIR%%/translations/pavucontrol-qt_ta.qm %%DATADIR%%/translations/pavucontrol-qt_te.qm %%DATADIR%%/translations/pavucontrol-qt_th.qm %%DATADIR%%/translations/pavucontrol-qt_tr.qm %%DATADIR%%/translations/pavucontrol-qt_uk.qm %%DATADIR%%/translations/pavucontrol-qt_zh_CN.qm %%DATADIR%%/translations/pavucontrol-qt_zh_TW.qm diff --git a/deskutils/lxqt-notificationd/Makefile b/deskutils/lxqt-notificationd/Makefile index c0b4a383786a..e3a12a591cd7 100644 --- a/deskutils/lxqt-notificationd/Makefile +++ b/deskutils/lxqt-notificationd/Makefile @@ -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 diff --git a/deskutils/lxqt-notificationd/distinfo b/deskutils/lxqt-notificationd/distinfo index f25b0192df8e..fa64984d53c9 100644 --- a/deskutils/lxqt-notificationd/distinfo +++ b/deskutils/lxqt-notificationd/distinfo @@ -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 diff --git a/deskutils/lxqt-notificationd/pkg-descr b/deskutils/lxqt-notificationd/pkg-descr index e89ab50eb415..163a54f139b8 100644 --- a/deskutils/lxqt-notificationd/pkg-descr +++ b/deskutils/lxqt-notificationd/pkg-descr @@ -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. diff --git a/deskutils/lxqt-notificationd/pkg-plist b/deskutils/lxqt-notificationd/pkg-plist index 378f15fc59a9..80831f470651 100644 --- a/deskutils/lxqt-notificationd/pkg-plist +++ b/deskutils/lxqt-notificationd/pkg-plist @@ -1,82 +1,86 @@ bin/lxqt-config-notificationd bin/lxqt-notificationd etc/xdg/autostart/lxqt-notifications.desktop share/applications/lxqt-config-notificationd.desktop %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-notificationd/lxqt-config-notificationd_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_da.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_de.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_el.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_es.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_et.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_he.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_id.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_si.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-notificationd/lxqt-notificationd_zh_TW.qm diff --git a/devel/liblxqt/Makefile b/devel/liblxqt/Makefile index 7e15f5b9333f..1d6a7aea1927 100644 --- a/devel/liblxqt/Makefile +++ b/devel/liblxqt/Makefile @@ -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 diff --git a/devel/liblxqt/distinfo b/devel/liblxqt/distinfo index b58ae540e369..6a968f0a54c6 100644 --- a/devel/liblxqt/distinfo +++ b/devel/liblxqt/distinfo @@ -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 diff --git a/devel/liblxqt/pkg-plist b/devel/liblxqt/pkg-plist index 7abf7703c886..8aad49823b45 100644 --- a/devel/liblxqt/pkg-plist +++ b/devel/liblxqt/pkg-plist @@ -1,98 +1,100 @@ bin/lxqt-backlight_backend %%LXQT_INCLUDEDIR%%/LXQt/Application %%LXQT_INCLUDEDIR%%/LXQt/AutostartEntry %%LXQT_INCLUDEDIR%%/LXQt/Backlight %%LXQT_INCLUDEDIR%%/LXQt/ConfigDialog %%LXQT_INCLUDEDIR%%/LXQt/ConfigDialogCmdLineOptions %%LXQT_INCLUDEDIR%%/LXQt/Globals %%LXQT_INCLUDEDIR%%/LXQt/GridLayout %%LXQT_INCLUDEDIR%%/LXQt/HtmlDelegate %%LXQT_INCLUDEDIR%%/LXQt/Notification %%LXQT_INCLUDEDIR%%/LXQt/PageSelectWidget %%LXQT_INCLUDEDIR%%/LXQt/PluginInfo %%LXQT_INCLUDEDIR%%/LXQt/Power %%LXQT_INCLUDEDIR%%/LXQt/PowerManager %%LXQT_INCLUDEDIR%%/LXQt/ProgramFinder %%LXQT_INCLUDEDIR%%/LXQt/RotatedWidget %%LXQT_INCLUDEDIR%%/LXQt/ScreenSaver %%LXQT_INCLUDEDIR%%/LXQt/Settings %%LXQT_INCLUDEDIR%%/LXQt/SingleApplication %%LXQT_INCLUDEDIR%%/LXQt/Translator %%LXQT_INCLUDEDIR%%/LXQt/lxqtapplication.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtautostartentry.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtbacklight.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtconfigdialog.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtconfigdialogcmdlineoptions.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtglobals.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtgridlayout.h %%LXQT_INCLUDEDIR%%/LXQt/lxqthtmldelegate.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtnotification.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtpageselectwidget.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtplugininfo.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtpower.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtpowermanager.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtprogramfinder.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtrotatedwidget.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtscreensaver.h %%LXQT_INCLUDEDIR%%/LXQt/lxqtsettings.h %%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 share/cmake/lxqt/lxqt-config.cmake share/cmake/lxqt/lxqt-targets-%%CMAKE_BUILD_TYPE%%.cmake share/cmake/lxqt/lxqt-targets.cmake %%LXQT_SHAREDIR%%/power.conf %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_ar.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_arn.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_ast.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_bg.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_ca.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_cs.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_cy.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_da.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_de.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_el.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_en_GB.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_eo.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_es.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_es_VE.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_et.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_eu.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_fi.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_fr.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_gl.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_he.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_hi.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_hr.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_hu.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_ia.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_id.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_it.qm %%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 %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_ro_RO.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_ru.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_si.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_sk_SK.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_sl.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_sr@latin.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_sr_RS.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_th_TH.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_tr.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_uk.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_zh_CN.qm %%LXQT_TRANSLATIONS%%/liblxqt/liblxqt_zh_TW.qm share/polkit-1/actions/org.lxqt.backlight.pkexec.policy diff --git a/devel/libqtxdg/Makefile b/devel/libqtxdg/Makefile index 4c1d7839b864..ec5de086155e 100644 --- a/devel/libqtxdg/Makefile +++ b/devel/libqtxdg/Makefile @@ -1,18 +1,23 @@ PORTNAME= libqtxdg 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 diff --git a/devel/libqtxdg/pkg-plist b/devel/libqtxdg/pkg-plist index aafecf61539f..c06a4cf78a81 100644 --- a/devel/libqtxdg/pkg-plist +++ b/devel/libqtxdg/pkg-plist @@ -1,44 +1,44 @@ -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 %%QT_INCDIR%%xdg/XdgDesktopFile %%QT_INCDIR%%xdg/XdgDirs %%QT_INCDIR%%xdg/XdgIcon %%QT_INCDIR%%xdg/XdgMenu %%QT_INCDIR%%xdg/XdgMenuWidget %%QT_INCDIR%%xdg/XdgMimeApps %%QT_INCDIR%%xdg/XdgMimeType %%QT_INCDIR%%xdg/XmlHelper %%QT_INCDIR%%xdg/xdgaction.h %%QT_INCDIR%%xdg/xdgautostart.h %%QT_INCDIR%%xdg/xdgdefaultapps.h %%QT_INCDIR%%xdg/xdgdesktopfile.h %%QT_INCDIR%%xdg/xdgdirs.h %%QT_INCDIR%%xdg/xdgicon.h %%QT_INCDIR%%xdg/xdgmacros.h %%QT_INCDIR%%xdg/xdgmenu.h %%QT_INCDIR%%xdg/xdgmenuwidget.h %%QT_INCDIR%%xdg/xdgmimeapps.h %%QT_INCDIR%%xdg/xdgmimetype.h %%QT_INCDIR%%xdg/xmlhelper.h %%QT_INCDIR%%xdgiconloader/%%VERSION%%/private/xdgiconloader/xdgiconloader_p.h %%QT_INCDIR%%xdgiconloader/xdgiconloader_export.h lib/libQt5Xdg.so lib/libQt5Xdg.so.3 lib/libQt5Xdg.so.%%VERSION%% lib/libQt5XdgIconLoader.so lib/libQt5XdgIconLoader.so.3 lib/libQt5XdgIconLoader.so.%%VERSION%% %%QT_PLUGINDIR%%/iconengines/libQt5XdgIconPlugin.so libdata/pkgconfig/Qt5Xdg.pc libdata/pkgconfig/Qt5XdgIconLoader.pc share/cmake/qt5xdg/qt5xdg-config-version.cmake share/cmake/qt5xdg/qt5xdg-config.cmake share/cmake/qt5xdg/qt5xdg-targets-%%CMAKE_BUILD_TYPE%%.cmake share/cmake/qt5xdg/qt5xdg-targets.cmake share/cmake/qt5xdgiconloader/qt5xdgiconloader-config-version.cmake share/cmake/qt5xdgiconloader/qt5xdgiconloader-config.cmake share/cmake/qt5xdgiconloader/qt5xdgiconloader-targets-%%CMAKE_BUILD_TYPE%%.cmake share/cmake/qt5xdgiconloader/qt5xdgiconloader-targets.cmake diff --git a/devel/lxqt-build-tools/Makefile b/devel/lxqt-build-tools/Makefile index 1b220a5cc224..674bfc35fd15 100644 --- a/devel/lxqt-build-tools/Makefile +++ b/devel/lxqt-build-tools/Makefile @@ -1,17 +1,17 @@ PORTNAME= lxqt-build-tools 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 .include diff --git a/editors/featherpad/Makefile b/editors/featherpad/Makefile index 3245cdf52f88..b4bc3aab025b 100644 --- a/editors/featherpad/Makefile +++ b/editors/featherpad/Makefile @@ -1,25 +1,24 @@ 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 .include diff --git a/editors/featherpad/distinfo b/editors/featherpad/distinfo index 7eac81df15e3..c4cb3794d79b 100644 --- a/editors/featherpad/distinfo +++ b/editors/featherpad/distinfo @@ -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 diff --git a/editors/featherpad/pkg-descr b/editors/featherpad/pkg-descr index 2d9e142744c0..7f86ad2149cf 100644 --- a/editors/featherpad/pkg-descr +++ b/editors/featherpad/pkg-descr @@ -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. diff --git a/graphics/lximage-qt/Makefile b/graphics/lximage-qt/Makefile index 44cf186815d7..12de108de1d5 100644 --- a/graphics/lximage-qt/Makefile +++ b/graphics/lximage-qt/Makefile @@ -1,25 +1,24 @@ 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 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 diff --git a/graphics/lximage-qt/distinfo b/graphics/lximage-qt/distinfo index 57df7869ab21..26827b65b0ca 100644 --- a/graphics/lximage-qt/distinfo +++ b/graphics/lximage-qt/distinfo @@ -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 diff --git a/graphics/lximage-qt/pkg-plist b/graphics/lximage-qt/pkg-plist index 35f1e477e18d..c72d066a3bd6 100644 --- a/graphics/lximage-qt/pkg-plist +++ b/graphics/lximage-qt/pkg-plist @@ -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 diff --git a/security/lxqt-openssh-askpass/Makefile b/security/lxqt-openssh-askpass/Makefile index c393aacb5012..8fb9f476a00d 100644 --- a/security/lxqt-openssh-askpass/Makefile +++ b/security/lxqt-openssh-askpass/Makefile @@ -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 diff --git a/security/lxqt-openssh-askpass/distinfo b/security/lxqt-openssh-askpass/distinfo index c616867a6192..ab9d757abfc6 100644 --- a/security/lxqt-openssh-askpass/distinfo +++ b/security/lxqt-openssh-askpass/distinfo @@ -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 diff --git a/security/lxqt-openssh-askpass/pkg-descr b/security/lxqt-openssh-askpass/pkg-descr index 9803b7f86c4c..1ae8407a6d20 100644 --- a/security/lxqt-openssh-askpass/pkg-descr +++ b/security/lxqt-openssh-askpass/pkg-descr @@ -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. diff --git a/security/lxqt-openssh-askpass/pkg-plist b/security/lxqt-openssh-askpass/pkg-plist index ca5e8db72d7e..71973f01efcf 100644 --- a/security/lxqt-openssh-askpass/pkg-plist +++ b/security/lxqt-openssh-askpass/pkg-plist @@ -1,39 +1,41 @@ bin/lxqt-openssh-askpass %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_da.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_de.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_el.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_es.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_et.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_he.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_si.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-openssh-askpass/lxqt-openssh-askpass_zh_CN.qm share/man/man1/lxqt-openssh-askpass.1.gz diff --git a/security/lxqt-sudo/Makefile b/security/lxqt-sudo/Makefile index d61cb8abb471..08272703f603 100644 --- a/security/lxqt-sudo/Makefile +++ b/security/lxqt-sudo/Makefile @@ -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 diff --git a/security/lxqt-sudo/distinfo b/security/lxqt-sudo/distinfo index 233550e6618c..57ce2fc61733 100644 --- a/security/lxqt-sudo/distinfo +++ b/security/lxqt-sudo/distinfo @@ -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 diff --git a/security/lxqt-sudo/pkg-descr b/security/lxqt-sudo/pkg-descr index da4c47270940..c72b111db2e4 100644 --- a/security/lxqt-sudo/pkg-descr +++ b/security/lxqt-sudo/pkg-descr @@ -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. diff --git a/security/lxqt-sudo/pkg-plist b/security/lxqt-sudo/pkg-plist index 93df643f0924..9dd3f6667d07 100644 --- a/security/lxqt-sudo/pkg-plist +++ b/security/lxqt-sudo/pkg-plist @@ -1,46 +1,48 @@ bin/lxdoas bin/lxqt-sudo bin/lxsu bin/lxsudo %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_da.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_de.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_el.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_es.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_et.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_he.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_si.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_sk.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-sudo/lxqt-sudo_zh_TW.qm share/man/man1/lxdoas.1.gz share/man/man1/lxqt-sudo.1.gz share/man/man1/lxsu.1.gz share/man/man1/lxsudo.1.gz diff --git a/sysutils/libsysstat/Makefile b/sysutils/libsysstat/Makefile index 743be88f74c9..618a4bb1a502 100644 --- a/sysutils/libsysstat/Makefile +++ b/sysutils/libsysstat/Makefile @@ -1,21 +1,21 @@ PORTNAME= libsysstat 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 post-extract: @${CP} ${FILESDIR}/config.h.in ${WRKSRC} .include diff --git a/sysutils/lxqt-admin/Makefile b/sysutils/lxqt-admin/Makefile index cdbf21a96dd4..22535db8c285 100644 --- a/sysutils/lxqt-admin/Makefile +++ b/sysutils/lxqt-admin/Makefile @@ -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 diff --git a/sysutils/lxqt-admin/distinfo b/sysutils/lxqt-admin/distinfo index d220803f3218..bc422beb843e 100644 --- a/sysutils/lxqt-admin/distinfo +++ b/sysutils/lxqt-admin/distinfo @@ -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 diff --git a/sysutils/lxqt-admin/pkg-descr b/sysutils/lxqt-admin/pkg-descr index f3e979ad0d92..0603a76d8416 100644 --- a/sysutils/lxqt-admin/pkg-descr +++ b/sysutils/lxqt-admin/pkg-descr @@ -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. diff --git a/sysutils/lxqt-admin/pkg-plist b/sysutils/lxqt-admin/pkg-plist index 90e344e9db8e..85b967dbbcd8 100644 --- a/sysutils/lxqt-admin/pkg-plist +++ b/sysutils/lxqt-admin/pkg-plist @@ -1,84 +1,90 @@ bin/lxqt-admin-time bin/lxqt-admin-time-helper bin/lxqt-admin-user bin/lxqt-admin-user-helper share/applications/lxqt-admin-time.desktop share/applications/lxqt-admin-user.desktop %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_da.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_de.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_el.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_id.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_si.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_sk.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-time/lxqt-admin-time_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_da.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_de.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_el.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_hi.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_si.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_sk.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-admin-user/lxqt-admin-user_zh_CN.qm share/polkit-1/actions/org.lxqt.lxqt-admin-time.policy share/polkit-1/actions/org.lxqt.lxqt-admin-user.policy diff --git a/sysutils/lxqt-config/Makefile b/sysutils/lxqt-config/Makefile index 225d6f636548..42151d52597a 100644 --- a/sysutils/lxqt-config/Makefile +++ b/sysutils/lxqt-config/Makefile @@ -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 diff --git a/sysutils/lxqt-config/distinfo b/sysutils/lxqt-config/distinfo index 1fa8d003cd4f..8deb94daa249 100644 --- a/sysutils/lxqt-config/distinfo +++ b/sysutils/lxqt-config/distinfo @@ -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 diff --git a/sysutils/lxqt-config/pkg-descr b/sysutils/lxqt-config/pkg-descr index c669ebcf3ee5..21da9af85f43 100644 --- a/sysutils/lxqt-config/pkg-descr +++ b/sysutils/lxqt-config/pkg-descr @@ -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. diff --git a/sysutils/lxqt-config/pkg-plist b/sysutils/lxqt-config/pkg-plist index ee380dabdffa..710818444828 100644 --- a/sysutils/lxqt-config/pkg-plist +++ b/sysutils/lxqt-config/pkg-plist @@ -1,367 +1,382 @@ bin/lxqt-config bin/lxqt-config-appearance bin/lxqt-config-brightness bin/lxqt-config-file-associations bin/lxqt-config-input bin/lxqt-config-locale bin/lxqt-config-monitor lib/lxqt-config/liblxqt-config-cursor.so share/applications/lxqt-config-appearance.desktop share/applications/lxqt-config-brightness.desktop share/applications/lxqt-config-file-associations.desktop share/applications/lxqt-config-input.desktop share/applications/lxqt-config-locale.desktop share/applications/lxqt-config-monitor.desktop share/applications/lxqt-config.desktop share/icons/hicolor/48x48/apps/brightnesssettings.svg %%LXQT_SHAREDIR%%/icons/monitor.svg %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_fa.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_hi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_id.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_sk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_sr_BA.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-appearance/lxqt-config-appearance_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_el.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-brightness/lxqt-config-brightness_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_hi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_id.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-cursor/lxqt-config-cursor_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_id.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_nl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_oc.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_pl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_pt.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-file-associations/lxqt-config-file-associations_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_af.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_bn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_bn_IN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_id.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_is.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_oc.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_pa.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_pl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_pt.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_pt_BR.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-input/lxqt-config-input_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_hi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_id.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-locale/lxqt-config-locale_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_id.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-monitor/lxqt-config-monitor_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_fa.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_hi.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_id.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config/lxqt-config_zh_TW.qm share/man/man1/lxqt-config-appearance.1.gz share/man/man1/lxqt-config-mouse.1.gz share/man/man1/lxqt-config.1.gz diff --git a/sysutils/lxqt-policykit/Makefile b/sysutils/lxqt-policykit/Makefile index e0f23c0f867b..601cea1cb0e7 100644 --- a/sysutils/lxqt-policykit/Makefile +++ b/sysutils/lxqt-policykit/Makefile @@ -1,26 +1,24 @@ 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 .include diff --git a/sysutils/lxqt-policykit/distinfo b/sysutils/lxqt-policykit/distinfo index 1ea4b4e17e9c..b27d129ccdfc 100644 --- a/sysutils/lxqt-policykit/distinfo +++ b/sysutils/lxqt-policykit/distinfo @@ -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 diff --git a/sysutils/lxqt-policykit/pkg-plist b/sysutils/lxqt-policykit/pkg-plist index 3cf310d28376..396ed5553289 100644 --- a/sysutils/lxqt-policykit/pkg-plist +++ b/sysutils/lxqt-policykit/pkg-plist @@ -1,38 +1,40 @@ bin/lxqt-policykit-agent etc/xdg/autostart/lxqt-policykit-agent.desktop %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_da.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_de.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_el.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_es.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_et.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_he.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-policykit-agent/lxqt-policykit-agent_zh_CN.qm share/man/man1/lxqt-policykit-agent.1.gz diff --git a/sysutils/lxqt-powermanagement/Makefile b/sysutils/lxqt-powermanagement/Makefile index 57f5e0ca3e55..bcb95fbd2888 100644 --- a/sysutils/lxqt-powermanagement/Makefile +++ b/sysutils/lxqt-powermanagement/Makefile @@ -1,24 +1,23 @@ 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 LICENSE= LGPL21+ 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 diff --git a/sysutils/lxqt-powermanagement/distinfo b/sysutils/lxqt-powermanagement/distinfo index 6ba44a79f635..ab89856f530c 100644 --- a/sysutils/lxqt-powermanagement/distinfo +++ b/sysutils/lxqt-powermanagement/distinfo @@ -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 diff --git a/sysutils/lxqt-powermanagement/pkg-plist b/sysutils/lxqt-powermanagement/pkg-plist index e2454bfbc6dd..e237f96f3874 100644 --- a/sysutils/lxqt-powermanagement/pkg-plist +++ b/sysutils/lxqt-powermanagement/pkg-plist @@ -1,77 +1,81 @@ bin/lxqt-config-powermanagement bin/lxqt-powermanagement etc/xdg/autostart/lxqt-powermanagement.desktop share/applications/lxqt-config-powermanagement.desktop share/icons/hicolor/scalable/devices/laptop-lid.svg %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-powermanagement/lxqt-config-powermanagement_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_da.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_de.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_el.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_es.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_et.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_he.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_si.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-powermanagement/lxqt-powermanagement_zh_CN.qm diff --git a/sysutils/lxqt-qtplugin/Makefile b/sysutils/lxqt-qtplugin/Makefile index 5890a6b6105a..cc344f7e2b01 100644 --- a/sysutils/lxqt-qtplugin/Makefile +++ b/sysutils/lxqt-qtplugin/Makefile @@ -1,28 +1,28 @@ PORTNAME= lxqt-qtplugin 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 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 PLIST_FILES= ${QT_PLUGINDIR}/platformthemes/libqtlxqt.so .include diff --git a/sysutils/qtxdg-tools/Makefile b/sysutils/qtxdg-tools/Makefile index 91dd7aa11a42..19d540f2c9c9 100644 --- a/sysutils/qtxdg-tools/Makefile +++ b/sysutils/qtxdg-tools/Makefile @@ -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 diff --git a/sysutils/qtxdg-tools/distinfo b/sysutils/qtxdg-tools/distinfo index 4f50e950916e..7662ac534546 100644 --- a/sysutils/qtxdg-tools/distinfo +++ b/sysutils/qtxdg-tools/distinfo @@ -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 diff --git a/x11-fm/pcmanfm-qt/Makefile b/x11-fm/pcmanfm-qt/Makefile index 1aeeb1bb055e..dee48c2b2e16 100644 --- a/x11-fm/pcmanfm-qt/Makefile +++ b/x11-fm/pcmanfm-qt/Makefile @@ -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 diff --git a/x11-fm/pcmanfm-qt/distinfo b/x11-fm/pcmanfm-qt/distinfo index 1fbeb4b5ae39..c9291b82d738 100644 --- a/x11-fm/pcmanfm-qt/distinfo +++ b/x11-fm/pcmanfm-qt/distinfo @@ -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 diff --git a/x11-fm/pcmanfm-qt/pkg-plist b/x11-fm/pcmanfm-qt/pkg-plist index de7a176fa330..cd01f1a05a0f 100644 --- a/x11-fm/pcmanfm-qt/pkg-plist +++ b/x11-fm/pcmanfm-qt/pkg-plist @@ -1,53 +1,55 @@ bin/pcmanfm-qt etc/xdg/autostart/lxqt-desktop.desktop share/applications/pcmanfm-qt-desktop-pref.desktop share/applications/pcmanfm-qt.desktop share/icons/hicolor/scalable/apps/pcmanfm-qt.svg share/man/man1/pcmanfm-qt.1.gz @sample %%DATADIR%%/lxqt/settings.conf.sample %%DATADIR%%/translations/pcmanfm-qt_ar.qm %%DATADIR%%/translations/pcmanfm-qt_arn.qm %%DATADIR%%/translations/pcmanfm-qt_ast.qm %%DATADIR%%/translations/pcmanfm-qt_bg.qm %%DATADIR%%/translations/pcmanfm-qt_ca.qm %%DATADIR%%/translations/pcmanfm-qt_cs.qm %%DATADIR%%/translations/pcmanfm-qt_cy.qm %%DATADIR%%/translations/pcmanfm-qt_da.qm %%DATADIR%%/translations/pcmanfm-qt_de.qm %%DATADIR%%/translations/pcmanfm-qt_el.qm %%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 %%DATADIR%%/translations/pcmanfm-qt_ga.qm %%DATADIR%%/translations/pcmanfm-qt_gl.qm %%DATADIR%%/translations/pcmanfm-qt_he.qm %%DATADIR%%/translations/pcmanfm-qt_hi.qm %%DATADIR%%/translations/pcmanfm-qt_hr.qm %%DATADIR%%/translations/pcmanfm-qt_hu.qm %%DATADIR%%/translations/pcmanfm-qt_id.qm %%DATADIR%%/translations/pcmanfm-qt_it.qm %%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 %%DATADIR%%/translations/pcmanfm-qt_nl.qm %%DATADIR%%/translations/pcmanfm-qt_oc.qm %%DATADIR%%/translations/pcmanfm-qt_pl.qm %%DATADIR%%/translations/pcmanfm-qt_pt.qm %%DATADIR%%/translations/pcmanfm-qt_pt_BR.qm %%DATADIR%%/translations/pcmanfm-qt_ro.qm %%DATADIR%%/translations/pcmanfm-qt_ru.qm %%DATADIR%%/translations/pcmanfm-qt_si.qm %%DATADIR%%/translations/pcmanfm-qt_sk_SK.qm %%DATADIR%%/translations/pcmanfm-qt_sl.qm %%DATADIR%%/translations/pcmanfm-qt_sv.qm %%DATADIR%%/translations/pcmanfm-qt_tr.qm %%DATADIR%%/translations/pcmanfm-qt_uk.qm %%DATADIR%%/translations/pcmanfm-qt_vi.qm %%DATADIR%%/translations/pcmanfm-qt_zh_CN.qm %%DATADIR%%/translations/pcmanfm-qt_zh_TW.qm diff --git a/x11-themes/lxqt-themes/Makefile b/x11-themes/lxqt-themes/Makefile index 87764c94f2ec..787e69162001 100644 --- a/x11-themes/lxqt-themes/Makefile +++ b/x11-themes/lxqt-themes/Makefile @@ -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 diff --git a/x11-themes/lxqt-themes/distinfo b/x11-themes/lxqt-themes/distinfo index 272dab685212..31d6b305c763 100644 --- a/x11-themes/lxqt-themes/distinfo +++ b/x11-themes/lxqt-themes/distinfo @@ -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 diff --git a/x11-toolkits/qtermwidget/Makefile b/x11-toolkits/qtermwidget/Makefile index 234e13b463f7..047ec2acdf72 100644 --- a/x11-toolkits/qtermwidget/Makefile +++ b/x11-toolkits/qtermwidget/Makefile @@ -1,21 +1,21 @@ 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 .include diff --git a/x11-toolkits/qtermwidget/distinfo b/x11-toolkits/qtermwidget/distinfo index e8836a1fe151..1a16df89cc58 100644 --- a/x11-toolkits/qtermwidget/distinfo +++ b/x11-toolkits/qtermwidget/distinfo @@ -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 diff --git a/x11-toolkits/qtermwidget/pkg-plist b/x11-toolkits/qtermwidget/pkg-plist index 4ae4d2ed8d6c..b29e3b3e6b17 100644 --- a/x11-toolkits/qtermwidget/pkg-plist +++ b/x11-toolkits/qtermwidget/pkg-plist @@ -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 diff --git a/x11-wm/lxqt-panel/Makefile b/x11-wm/lxqt-panel/Makefile index bd0b0f6a9296..0455e375fcb3 100644 --- a/x11-wm/lxqt-panel/Makefile +++ b/x11-wm/lxqt-panel/Makefile @@ -1,65 +1,64 @@ 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 OPTIONS_RADIO= SOUND OPTIONS_RADIO_SOUND= ALSA PULSEAUDIO OPTIONS_DEFINE= CPULOAD MOUNT OPTIONS_DEFAULT= PULSEAUDIO CPULOAD_DESC= CPU stat plugin MOUNT_DESC= Mount removable devices support ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_CMAKE_ON= -DVOLUME_USE_PULSEAUDIO:BOOL=OFF CPULOAD_LIB_DEPENDS= libstatgrab.so:devel/libstatgrab CPULOAD_CMAKE_OFF= -DCPULOAD_PLUGIN:BOOL=OFF PULSEAUDIO_CMAKE_ON= -DVOLUME_USE_ALSA:BOOL=OFF PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio MOUNT_USE= kde=solid MOUNT_CMAKE_OFF= -DMOUNT_PLUGIN:BOOL=OFF OPTIONS_SUB= yes LDFLAGS+= -Xlinker --export-dynamic CMAKE_ARGS+= -DSENSORS_PLUGIN:BOOL=OFF \ -DNETWORKMONITOR_PLUGIN:BOOL=OFF \ -DWITH_SCREENSAVER_FALLBACK:BOOL=OFF .include .if ! ${PORT_OPTIONS:MALSA} && ! ${PORT_OPTIONS:MPULSEAUDIO} CMAKE_ARGS+= -DVOLUME_PLUGIN:BOOL=OFF PLIST_SUB+= SOUND="@comment " .elif ${PORT_OPTIONS:MALSA} || ${PORT_OPTIONS:MPULSEAUDIO} PLIST_SUB+= SOUND="" .endif .include diff --git a/x11-wm/lxqt-panel/distinfo b/x11-wm/lxqt-panel/distinfo index b70ddebd2b3b..f866e46a68dd 100644 --- a/x11-wm/lxqt-panel/distinfo +++ b/x11-wm/lxqt-panel/distinfo @@ -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 diff --git a/x11-wm/lxqt-panel/files/patch-panel_resources_panel.conf b/x11-wm/lxqt-panel/files/patch-panel_resources_panel.conf index ee34d13c7478..52de8ac9ee54 100644 --- a/x11-wm/lxqt-panel/files/patch-panel_resources_panel.conf +++ b/x11-wm/lxqt-panel/files/patch-panel_resources_panel.conf @@ -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 diff --git a/x11-wm/lxqt-panel/pkg-plist b/x11-wm/lxqt-panel/pkg-plist index dccdf8b75766..7d2205f22b9f 100644 --- a/x11-wm/lxqt-panel/pkg-plist +++ b/x11-wm/lxqt-panel/pkg-plist @@ -1,821 +1,921 @@ bin/lxqt-panel etc/xdg/autostart/lxqt-panel.desktop %%LXQT_INCLUDEDIR%%/ilxqtpanel.h %%LXQT_INCLUDEDIR%%/ilxqtpanelplugin.h %%LXQT_INCLUDEDIR%%/lxqtpanelglobals.h %%LXQT_INCLUDEDIR%%/pluginsettings.h lib/lxqt-panel/libbacklight.so lib/lxqt-panel/libcolorpicker.so %%CPULOAD%%lib/lxqt-panel/libcpuload.so lib/lxqt-panel/libcustomcommand.so lib/lxqt-panel/libdirectorymenu.so lib/lxqt-panel/libdom.so lib/lxqt-panel/libkbindicator.so %%MOUNT%%lib/lxqt-panel/libmount.so lib/lxqt-panel/libqeyes.so lib/lxqt-panel/libsysstat.so %%SOUND%%lib/lxqt-panel/libvolume.so %%LXQT_SHAREDIR%%/lxqt-panel/backlight.desktop %%LXQT_SHAREDIR%%/lxqt-panel/colorpicker.desktop %%CPULOAD%%%%LXQT_SHAREDIR%%/lxqt-panel/cpuload.desktop %%LXQT_SHAREDIR%%/lxqt-panel/customcommand.desktop %%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 %%LXQT_SHAREDIR%%/lxqt-panel/qeyes.desktop %%LXQT_SHAREDIR%%/lxqt-panel/quicklaunch.desktop %%LXQT_SHAREDIR%%/lxqt-panel/showdesktop.desktop %%LXQT_SHAREDIR%%/lxqt-panel/spacer.desktop %%LXQT_SHAREDIR%%/lxqt-panel/statusnotifier.desktop %%LXQT_SHAREDIR%%/lxqt-panel/sysstat.desktop %%LXQT_SHAREDIR%%/lxqt-panel/taskbar.desktop %%LXQT_SHAREDIR%%/lxqt-panel/tray.desktop %%SOUND%%%%LXQT_SHAREDIR%%/lxqt-panel/volume.desktop %%LXQT_SHAREDIR%%/lxqt-panel/worldclock.desktop %%LXQT_SHAREDIR%%/panel.conf %%LXQT_SHAREDIR%%/panel/qeyes-types/Bizarre/Bizarre-eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Bizarre/Bizarre-pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Bizarre/config %%LXQT_SHAREDIR%%/panel/qeyes-types/Bloodshot/Bloodshot-eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Bloodshot/Bloodshot-pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Bloodshot/config %%LXQT_SHAREDIR%%/panel/qeyes-types/Brown-EyedGirl/brown-eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Brown-EyedGirl/brown-pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Brown-EyedGirl/config %%LXQT_SHAREDIR%%/panel/qeyes-types/Crystal/config %%LXQT_SHAREDIR%%/panel/qeyes-types/Crystal/crystal-eye.svg %%LXQT_SHAREDIR%%/panel/qeyes-types/Crystal/crystal-pupil.svg %%LXQT_SHAREDIR%%/panel/qeyes-types/Default-tiny/Default-tiny-eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Default-tiny/Default-tiny-pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Default-tiny/config %%LXQT_SHAREDIR%%/panel/qeyes-types/Default/Default-eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Default/Default-pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Default/config %%LXQT_SHAREDIR%%/panel/qeyes-types/Digital/Digital-eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Digital/Digital-pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Digital/config %%LXQT_SHAREDIR%%/panel/qeyes-types/EyelashLarge/config %%LXQT_SHAREDIR%%/panel/qeyes-types/EyelashLarge/eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/EyelashLarge/pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Green-EyedGirl/config %%LXQT_SHAREDIR%%/panel/qeyes-types/Green-EyedGirl/green-eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Green-EyedGirl/green-pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Horrid/config %%LXQT_SHAREDIR%%/panel/qeyes-types/Horrid/horrid_eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Horrid/horrid_pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Pink-EyedGirl/config %%LXQT_SHAREDIR%%/panel/qeyes-types/Pink-EyedGirl/pink-eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/Pink-EyedGirl/pink-pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/PumpkinMonster/config %%LXQT_SHAREDIR%%/panel/qeyes-types/PumpkinMonster/eye.png %%LXQT_SHAREDIR%%/panel/qeyes-types/PumpkinMonster/pupil.png %%LXQT_SHAREDIR%%/panel/qeyes-types/README %%LXQT_SHAREDIR%%/panel/qeyes-types/Tango/config %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/colorpicker/colorpicker_he.qm %%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 %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_bg.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_ca.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_cs.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_cy.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_da.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_de.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_el.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_eo.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_es.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_es_VE.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_et.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_eu.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_fi.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_fr.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_gl.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_he.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_hr.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_hu.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_id.qm %%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 %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_ro_RO.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_ru.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_si.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_sk_SK.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_sl.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_sr.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_sv.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_th_TH.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_tr.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_uk.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_zh_CN.qm %%CPULOAD%%%%LXQT_TRANSLATIONS%%/lxqt-panel/cpuload/cpuload_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_hu.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_nl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_oc.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_pl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_pt.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_pt_BR.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_sk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_sr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/customcommand/customcommand_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_es_UY.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_sr@ijekavian.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_sr_BA.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/desktopswitch/desktopswitch_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/directorymenu/directorymenu_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_sr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_sr@ijekavian.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/dom/dom_sv.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_sr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/kbindicator/kbindicator_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_es_UY.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_fa.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_sr@ijekavian.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_sr_BA.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/lxqt-panel_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_es_UY.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_id.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_sr_BA.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/mainmenu/mainmenu_zh_TW.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_ar.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_arn.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_ast.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_bg.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_ca.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_cs.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_cy.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_da.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_de.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_el.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_eo.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_es.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_es_UY.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_es_VE.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_et.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_eu.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_fi.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_fr.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_gl.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_he.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_hr.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_hu.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_ia.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_id.qm %%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 %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_ro_RO.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_ru.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_si.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_sk_SK.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_sl.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_sr@latin.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_sr_BA.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_sr_RS.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_th_TH.qm %%MOUNT%%%%LXQT_TRANSLATIONS%%/lxqt-panel/mount/mount_tr.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_sr_BA.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/quicklaunch/quicklaunch_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_sr_BA.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/showdesktop/showdesktop_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_sk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_sr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/spacer/spacer_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_hu.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/statusnotifier/statusnotifier_si.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/sysstat/sysstat_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_sr_BA.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/taskbar/taskbar_zh_TW.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_ar.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_arn.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_ast.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_bg.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_ca.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_cs.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_cy.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_da.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_de.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_el.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_eo.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_es.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_es_VE.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_et.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_eu.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_fi.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_fr.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_gl.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_he.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_hr.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_hu.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_id.qm %%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 %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_ro_RO.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_ru.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_si.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_sk_SK.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_sl.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_sv.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_th_TH.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_tr.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_uk.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_zh_CN.qm %%SOUND%%%%LXQT_TRANSLATIONS%%/lxqt-panel/volume/volume_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_da.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_de.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_el.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_es.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_et.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_he.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_si.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_sr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-panel/worldclock/worldclock_zh_CN.qm share/man/man1/lxqt-panel.1.gz diff --git a/x11-wm/lxqt-session/Makefile b/x11-wm/lxqt-session/Makefile index 8cacf45cb7a0..ae4f5673fd63 100644 --- a/x11-wm/lxqt-session/Makefile +++ b/x11-wm/lxqt-session/Makefile @@ -1,29 +1,29 @@ 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/ 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 .include diff --git a/x11-wm/lxqt-session/distinfo b/x11-wm/lxqt-session/distinfo index 8e50f13a60c5..817de2bed51a 100644 --- a/x11-wm/lxqt-session/distinfo +++ b/x11-wm/lxqt-session/distinfo @@ -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 diff --git a/x11-wm/lxqt-session/files/patch-startlxqt.in b/x11-wm/lxqt-session/files/patch-startlxqt.in new file mode 100644 index 000000000000..784f265a7d97 --- /dev/null +++ b/x11-wm/lxqt-session/files/patch-startlxqt.in @@ -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 diff --git a/x11-wm/lxqt-session/pkg-plist b/x11-wm/lxqt-session/pkg-plist index 532860739f4a..9236d699b938 100644 --- a/x11-wm/lxqt-session/pkg-plist +++ b/x11-wm/lxqt-session/pkg-plist @@ -1,155 +1,161 @@ bin/lxqt-config-session bin/lxqt-leave bin/lxqt-session bin/startlxqt etc/xdg/autostart/lxqt-xscreensaver-autostart.desktop share/applications/lxqt-config-session.desktop share/applications/lxqt-hibernate.desktop share/applications/lxqt-leave.desktop share/applications/lxqt-lockscreen.desktop share/applications/lxqt-logout.desktop share/applications/lxqt-reboot.desktop share/applications/lxqt-shutdown.desktop share/applications/lxqt-suspend.desktop %%LXQT_SHAREDIR%%/lxqt.conf %%LXQT_SHAREDIR%%/session.conf %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_es_UY.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-session/lxqt-config-session_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_da.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_de.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_el.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_es.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_et.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_he.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_id.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_si.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_sk.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-leave/lxqt-leave_zh_TW.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_da.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_de.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_el.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_es.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_es_UY.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_et.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_he.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_id.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_it.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_si.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_sr_BA.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-session/lxqt-session_zh_TW.qm %%LXQT_SHAREDIR%%/windowmanagers.conf share/man/man1/lxqt-config-session.1.gz share/man/man1/lxqt-leave.1.gz share/man/man1/lxqt-session.1.gz share/man/man1/startlxqt.1.gz share/xsessions/lxqt.desktop diff --git a/x11-wm/lxqt/Makefile b/x11-wm/lxqt/Makefile index 7435fdab7815..cfb6ab0ea0e4 100644 --- a/x11-wm/lxqt/Makefile +++ b/x11-wm/lxqt/Makefile @@ -1,44 +1,45 @@ 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 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 \ lxqt-runner>=${PORTVERSION}:x11/lxqt-runner \ 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 \ lxqt-session>=${PORTVERSION}:x11-wm/lxqt-session \ qlipper:deskutils/qlipper \ openbox:x11-wm/openbox USES= metaport OPTIONS_DEFINE= EDITOR SSH SUDO 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 SUDO_RUN_DEPENDS= lxqt-sudo:security/lxqt-sudo .include diff --git a/x11-wm/obconf-qt/Makefile b/x11-wm/obconf-qt/Makefile index 049ce5c1f468..9f1c52b9b52e 100644 --- a/x11-wm/obconf-qt/Makefile +++ b/x11-wm/obconf-qt/Makefile @@ -1,32 +1,32 @@ PORTNAME= obconf-qt 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 LICENSE= GPLv2 LIB_DEPENDS= libobt.so:x11-wm/openbox \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libImlib2.so:graphics/imlib2 \ 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 USE_QT= buildtools:build qmake:build core gui linguisttools \ widgets x11extras USE_LXQT= buildtools USE_GNOME= glib20 pango librsvg2 gdkpixbuf2 libxml2 cairo USE_XORG= ice sm x11 xft .include diff --git a/x11/compton-conf/Makefile b/x11/compton-conf/Makefile index bd4e3aeb4379..d9e4d60134c5 100644 --- a/x11/compton-conf/Makefile +++ b/x11/compton-conf/Makefile @@ -1,23 +1,23 @@ 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 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 \ widgets USE_LXQT= buildtools .include diff --git a/x11/libfm-qt/Makefile b/x11/libfm-qt/Makefile index 51be08f8672f..19c93a7e33bd 100644 --- a/x11/libfm-qt/Makefile +++ b/x11/libfm-qt/Makefile @@ -1,31 +1,31 @@ PORTNAME= libfm-qt 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 LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libmenu-cache.so:x11/menu-cache \ libexif.so:graphics/libexif 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 \ x11extras USE_GNOME= glib20 USE_XORG= xcb USE_LXQT= buildtools USE_LDCONFIG= yes post-install: ${RM} -Rf ${STAGEDIR}${PREFIX}/include/${PORTNAME}/tests/ .include diff --git a/x11/lxqt-about/Makefile b/x11/lxqt-about/Makefile index 6f6bd486b348..cfece10662e8 100644 --- a/x11/lxqt-about/Makefile +++ b/x11/lxqt-about/Makefile @@ -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 diff --git a/x11/lxqt-about/distinfo b/x11/lxqt-about/distinfo index 53be31d29cf4..782d771896e3 100644 --- a/x11/lxqt-about/distinfo +++ b/x11/lxqt-about/distinfo @@ -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 diff --git a/x11/lxqt-about/pkg-plist b/x11/lxqt-about/pkg-plist index cbc568dd7bad..4a165dd1096b 100644 --- a/x11/lxqt-about/pkg-plist +++ b/x11/lxqt-about/pkg-plist @@ -1,54 +1,56 @@ bin/lxqt-about share/applications/lxqt-about.desktop share/icons/hicolor/scalable/apps/lxqt-about.svg %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_da.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_de.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_el.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_es.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_et.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_fa.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_he.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_hi.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_ia.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_si.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_sv.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-about/lxqt-about_zh_TW.qm diff --git a/x11/lxqt-globalkeys/Makefile b/x11/lxqt-globalkeys/Makefile index e750f2f8eef2..7de9d59e0f10 100644 --- a/x11/lxqt-globalkeys/Makefile +++ b/x11/lxqt-globalkeys/Makefile @@ -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 diff --git a/x11/lxqt-globalkeys/distinfo b/x11/lxqt-globalkeys/distinfo index 88a730ad3bbe..8f665feb4a38 100644 --- a/x11/lxqt-globalkeys/distinfo +++ b/x11/lxqt-globalkeys/distinfo @@ -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 diff --git a/x11/lxqt-globalkeys/pkg-plist b/x11/lxqt-globalkeys/pkg-plist index 853c6654c522..09503726833c 100644 --- a/x11/lxqt-globalkeys/pkg-plist +++ b/x11/lxqt-globalkeys/pkg-plist @@ -1,75 +1,76 @@ bin/lxqt-config-globalkeyshortcuts bin/lxqt-globalkeysd etc/xdg/autostart/lxqt-globalkeyshortcuts.desktop %%LXQT_INCLUDEDIR%%-globalkeys-ui/LXQtGlobalKeysUi/ShortcutSelector %%LXQT_INCLUDEDIR%%-globalkeys-ui/shortcut_selector.h %%LXQT_INCLUDEDIR%%-globalkeys-ui/shortcutselector.h %%LXQT_INCLUDEDIR%%-globalkeys/LXQtGlobalKeys/Action %%LXQT_INCLUDEDIR%%-globalkeys/LXQtGlobalKeys/Client %%LXQT_INCLUDEDIR%%-globalkeys/LXQtGlobalKeys/LXQtGlobalKeys %%LXQT_INCLUDEDIR%%-globalkeys/action.h %%LXQT_INCLUDEDIR%%-globalkeys/client.h %%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 share/applications/lxqt-config-globalkeyshortcuts.desktop share/cmake/lxqt-globalkeys-ui/lxqt-globalkeys-ui-config-version.cmake share/cmake/lxqt-globalkeys-ui/lxqt-globalkeys-ui-config.cmake share/cmake/lxqt-globalkeys-ui/lxqt-globalkeys-ui-targets-%%CMAKE_BUILD_TYPE%%.cmake share/cmake/lxqt-globalkeys-ui/lxqt-globalkeys-ui-targets.cmake share/cmake/lxqt-globalkeys/lxqt-globalkeys-config-version.cmake share/cmake/lxqt-globalkeys/lxqt-globalkeys-config.cmake share/cmake/lxqt-globalkeys/lxqt-globalkeys-targets-%%CMAKE_BUILD_TYPE%%.cmake share/cmake/lxqt-globalkeys/lxqt-globalkeys-targets.cmake %%LXQT_SHAREDIR%%/globalkeyshortcuts.conf %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_da.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_de.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_el.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_en_GB.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_es.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_et.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_fi.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_fr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_gl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_he.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_hr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_hu.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_id.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_nl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_oc.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_pl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_pt.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_pt_BR.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_si.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_sk_SK.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-config-globalkeyshortcuts/lxqt-config-globalkeyshortcuts_zh_TW.qm diff --git a/x11/lxqt-menu-data/Makefile b/x11/lxqt-menu-data/Makefile index ece6a1ea3a7c..b4892a241b30 100644 --- a/x11/lxqt-menu-data/Makefile +++ b/x11/lxqt-menu-data/Makefile @@ -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 diff --git a/x11/lxqt-menu-data/distinfo b/x11/lxqt-menu-data/distinfo index a7e55e12ccc0..1f71d5553a31 100644 --- a/x11/lxqt-menu-data/distinfo +++ b/x11/lxqt-menu-data/distinfo @@ -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 diff --git a/x11/lxqt-runner/Makefile b/x11/lxqt-runner/Makefile index 79727022a484..bbab20839fed 100644 --- a/x11/lxqt-runner/Makefile +++ b/x11/lxqt-runner/Makefile @@ -1,27 +1,27 @@ 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 LICENSE= LGPL21+ 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 .include diff --git a/x11/lxqt-runner/distinfo b/x11/lxqt-runner/distinfo index e6d0f402e927..6b905ba63474 100644 --- a/x11/lxqt-runner/distinfo +++ b/x11/lxqt-runner/distinfo @@ -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 diff --git a/x11/lxqt-runner/pkg-plist b/x11/lxqt-runner/pkg-plist index 10b9433fd37e..5518df0d3ffb 100644 --- a/x11/lxqt-runner/pkg-plist +++ b/x11/lxqt-runner/pkg-plist @@ -1,51 +1,53 @@ bin/lxqt-runner etc/xdg/autostart/lxqt-runner.desktop %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_ar.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_arn.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_ast.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_bg.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_ca.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_cs.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_cy.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_da.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_de.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_el.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_eo.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_es.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_es_VE.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_et.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_eu.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_fi.qm %%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 %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_ro_RO.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_ru.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_si.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_sk.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_sl.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_sr@latin.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_sr_BA.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_sr_RS.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_th_TH.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_tr.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_uk.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_vi.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_zh_CN.qm %%LXQT_TRANSLATIONS%%/lxqt-runner/lxqt-runner_zh_TW.qm share/man/man1/lxqt-runner.1.gz diff --git a/x11/qterminal/Makefile b/x11/qterminal/Makefile index cb12b6047f3d..bc455b739e3d 100644 --- a/x11/qterminal/Makefile +++ b/x11/qterminal/Makefile @@ -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 diff --git a/x11/qterminal/distinfo b/x11/qterminal/distinfo index 647aa8977d8a..0904fad34ede 100644 --- a/x11/qterminal/distinfo +++ b/x11/qterminal/distinfo @@ -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 diff --git a/x11/qterminal/pkg-plist b/x11/qterminal/pkg-plist index a959e51d1de2..555630b63097 100644 --- a/x11/qterminal/pkg-plist +++ b/x11/qterminal/pkg-plist @@ -1,46 +1,48 @@ bin/qterminal share/applications/qterminal-drop.desktop share/applications/qterminal.desktop share/icons/hicolor/64x64/apps/qterminal.png share/metainfo/qterminal.metainfo.xml %%DATADIR%%/qterminal_bookmarks_example.xml %%DATADIR%%/translations/qterminal_ar.qm %%DATADIR%%/translations/qterminal_arn.qm %%DATADIR%%/translations/qterminal_ast.qm %%DATADIR%%/translations/qterminal_bg.qm %%DATADIR%%/translations/qterminal_ca.qm %%DATADIR%%/translations/qterminal_cs.qm %%DATADIR%%/translations/qterminal_cy.qm %%DATADIR%%/translations/qterminal_da.qm %%DATADIR%%/translations/qterminal_de.qm %%DATADIR%%/translations/qterminal_de_CH.qm %%DATADIR%%/translations/qterminal_el.qm %%DATADIR%%/translations/qterminal_es.qm %%DATADIR%%/translations/qterminal_et.qm %%DATADIR%%/translations/qterminal_fa.qm %%DATADIR%%/translations/qterminal_fi.qm %%DATADIR%%/translations/qterminal_fr.qm %%DATADIR%%/translations/qterminal_gl.qm %%DATADIR%%/translations/qterminal_he.qm %%DATADIR%%/translations/qterminal_hi.qm %%DATADIR%%/translations/qterminal_hr.qm %%DATADIR%%/translations/qterminal_hu.qm %%DATADIR%%/translations/qterminal_id.qm %%DATADIR%%/translations/qterminal_it.qm %%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 %%DATADIR%%/translations/qterminal_ru.qm %%DATADIR%%/translations/qterminal_si.qm %%DATADIR%%/translations/qterminal_sk_SK.qm %%DATADIR%%/translations/qterminal_tr.qm %%DATADIR%%/translations/qterminal_uk.qm %%DATADIR%%/translations/qterminal_zh_CN.qm %%DATADIR%%/translations/qterminal_zh_TW.qm diff --git a/x11/screengrab/Makefile b/x11/screengrab/Makefile index 22177272c3c6..e30884e4fd73 100644 --- a/x11/screengrab/Makefile +++ b/x11/screengrab/Makefile @@ -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 diff --git a/x11/screengrab/distinfo b/x11/screengrab/distinfo index a6dfe33a032a..030ba115b32d 100644 --- a/x11/screengrab/distinfo +++ b/x11/screengrab/distinfo @@ -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 diff --git a/x11/screengrab/pkg-plist b/x11/screengrab/pkg-plist index 03e0d152a224..6acdee5b1fa6 100644 --- a/x11/screengrab/pkg-plist +++ b/x11/screengrab/pkg-plist @@ -1,46 +1,48 @@ bin/screengrab share/applications/screengrab.desktop %%DOCSDIR%%/html/default.css %%DOCSDIR%%/html/en/index.html %%DOCSDIR%%/html/pt_BR/index.html %%DOCSDIR%%/html/ru/index.html share/icons/hicolor/scalable/apps/screengrab.svg share/metainfo/screengrab.metainfo.xml %%DATADIR%%/screengrab.conf %%DATADIR%%/translations/screengrab_ar.qm %%DATADIR%%/translations/screengrab_arn.qm %%DATADIR%%/translations/screengrab_ast.qm %%DATADIR%%/translations/screengrab_bg.qm %%DATADIR%%/translations/screengrab_ca.qm %%DATADIR%%/translations/screengrab_cs.qm %%DATADIR%%/translations/screengrab_cy.qm %%DATADIR%%/translations/screengrab_de.qm %%DATADIR%%/translations/screengrab_el.qm %%DATADIR%%/translations/screengrab_es.qm %%DATADIR%%/translations/screengrab_et.qm %%DATADIR%%/translations/screengrab_fi.qm %%DATADIR%%/translations/screengrab_fr.qm %%DATADIR%%/translations/screengrab_gl.qm %%DATADIR%%/translations/screengrab_he.qm %%DATADIR%%/translations/screengrab_hr.qm %%DATADIR%%/translations/screengrab_hu.qm %%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 %%DATADIR%%/translations/screengrab_ru.qm %%DATADIR%%/translations/screengrab_si.qm %%DATADIR%%/translations/screengrab_sk.qm %%DATADIR%%/translations/screengrab_sl.qm %%DATADIR%%/translations/screengrab_sv.qm %%DATADIR%%/translations/screengrab_tr.qm %%DATADIR%%/translations/screengrab_uk.qm %%DATADIR%%/translations/screengrab_vi.qm %%DATADIR%%/translations/screengrab_zh_CN.qm %%DATADIR%%/translations/screengrab_zh_TW.qm