* Switched to experimental * Bumped liblxqt0-dev to >= 0.12.0 * Bumped liblxqt-globalkeys0-dev to >= 0.12.0 * Bumped liblxqt-globalkeys-ui0-dev to >= 0.12.0 * Bumped libsysstat-qt5-0-dev to >= 0.4.0 * Bumped Standards to 4.1.1 - no changes needed * Removed patches - patch was taken from upstreamubuntu/bionic debian/0.12.0-1
parent
605bba5c3e
commit
80fdf030bf
@ -0,0 +1,17 @@
|
||||
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
|
||||
|
||||
file(GLOB DESKTOP_FILES_IN *.desktop.in)
|
||||
|
||||
# Translations **********************************
|
||||
lxqt_translate_desktop(DESKTOP_FILES
|
||||
SOURCES
|
||||
${DESKTOP_FILES_IN}
|
||||
)
|
||||
add_custom_target(lxqt_panel_autostart_desktop_files ALL DEPENDS ${DESKTOP_FILES})
|
||||
#************************************************
|
||||
|
||||
install(FILES
|
||||
${DESKTOP_FILES}
|
||||
DESTINATION "${LXQT_ETC_XDG_DIR}/autostart"
|
||||
COMPONENT Runtime
|
||||
)
|
@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Panel
|
||||
TryExec=lxqt-panel
|
||||
Exec=lxqt-panel
|
||||
OnlyShowIn=LXQt;
|
||||
X-LXQt-Module=true
|
||||
|
||||
#TRANSLATIONS_DIR=translations
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[ar]=اللوحة
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[cs]=Panel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[cs_CZ]=Panel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[da]=Panel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[de]=Bedienfeld
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[el]=Πίνακας
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[eo]=Panelo
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[es]=Panel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[es_VE]=Panel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[eu]=Panela
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[fi]=Paneeli
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[fr]=Tableau de bord
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[hu]=Panel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[hu_HU]=Panel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[ia]=Panello
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[it_IT]=Pannello
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[ja]=パネル
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[lt]=Skydelis
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[nl]=Paneel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[pl]=Panel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[pt]=Painel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[pt_BR]=Painel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[ro_RO]=Panou
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[ru]=панель
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[ru_RU]=Панель
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[sl]=Pult
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[th_TH]=พาเนล
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[tr]=Panel
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[uk]=Панель
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[zh_CN]=面板
|
@ -0,0 +1,2 @@
|
||||
# Translations
|
||||
Name[zh_TW]=面板
|
@ -1,23 +0,0 @@
|
||||
Description: Fixes #873599 FTBFS explicit
|
||||
No further action needed, patch was taken with description from
|
||||
upstream and can disappear with the next release.
|
||||
Last-Update: 2017-09-03
|
||||
|
||||
--- lxqt-panel-0.11.1.orig/plugin-kbindicator/src/x11/kbdlayout.cpp
|
||||
+++ lxqt-panel-0.11.1/plugin-kbindicator/src/x11/kbdlayout.cpp
|
||||
@@ -33,8 +33,15 @@
|
||||
|
||||
#include <xkbcommon/xkbcommon-x11.h>
|
||||
#include <xcb/xcb.h>
|
||||
+
|
||||
+// Note: We need to override "explicit" as this is a C++ keyword. But it is
|
||||
+// used as variable name in xkb.h. This is causing a failure in C++ compile
|
||||
+// time.
|
||||
+// Similar bug here: https://bugs.freedesktop.org/show_bug.cgi?id=74080
|
||||
#define explicit _explicit
|
||||
#include <xcb/xkb.h>
|
||||
+#undef explicit
|
||||
+
|
||||
#include "../kbdinfo.h"
|
||||
#include "../controls.h"
|
||||
|
@ -1 +0,0 @@
|
||||
fix-explicit.patch
|
@ -0,0 +1,21 @@
|
||||
file(GLOB DIRECTORY_FILES_IN desktop-directories/*.directory.in)
|
||||
|
||||
# Translations **********************************
|
||||
lxqt_translate_desktop(DIRECTORY_FILES
|
||||
SOURCES
|
||||
${DIRECTORY_FILES_IN}
|
||||
)
|
||||
add_custom_target(desktop_directories_files ALL DEPENDS ${DIRECTORY_FILES})
|
||||
#************************************************
|
||||
|
||||
install(FILES
|
||||
${DIRECTORY_FILES}
|
||||
DESTINATION "${CMAKE_INSTALL_DATAROOTDIR}/desktop-directories"
|
||||
COMPONENT Runtime
|
||||
)
|
||||
|
||||
install(FILES
|
||||
lxqt-applications.menu
|
||||
DESTINATION "${LXQT_ETC_XDG_DIR}/menus"
|
||||
COMPONENT Runtime
|
||||
)
|
@ -0,0 +1,7 @@
|
||||
[Desktop Entry]
|
||||
Name=Leave
|
||||
Comment=Leave Session
|
||||
Icon=system-shutdown
|
||||
Type=Directory
|
||||
|
||||
#TRANSLATIONS_DIR=../translations
|
@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Type=Directory
|
||||
Name=LXQt settings
|
||||
Icon=preferences-system
|
||||
|
||||
#TRANSLATIONS_DIR=translations
|
||||
|
||||
# Translations
|
@ -0,0 +1,237 @@
|
||||
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
|
||||
"http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd">
|
||||
|
||||
<Menu>
|
||||
|
||||
<Name>Applications</Name>
|
||||
<Directory>lxde-menu-applications.directory</Directory>
|
||||
|
||||
<!-- Read standard .directory and .desktop file locations -->
|
||||
<DefaultAppDirs/>
|
||||
<DefaultDirectoryDirs/>
|
||||
|
||||
<!-- Read in overrides and child menus from applications-merged/ -->
|
||||
<DefaultMergeDirs/>
|
||||
|
||||
<!-- Accessories submenu -->
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Directory>lxde-utility.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>Utility</Category>
|
||||
<!-- Accessibility spec must have either the Utility or Settings
|
||||
category, and we display an accessibility submenu already for
|
||||
the ones that do not have Settings, so don't display accessibility
|
||||
applications here -->
|
||||
<Not><Category>Accessibility</Category></Not>
|
||||
<Not><Category>System</Category></Not>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Accessories -->
|
||||
|
||||
<!-- Accessibility submenu -->
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<Directory>lxde-utility-accessibility.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>Accessibility</Category>
|
||||
<Not><Category>Settings</Category></Not>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Accessibility -->
|
||||
|
||||
<!-- Development Tools -->
|
||||
<Menu>
|
||||
<Name>Development</Name>
|
||||
<Directory>lxde-development.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>Development</Category>
|
||||
</And>
|
||||
<Filename>emacs.desktop</Filename>
|
||||
</Include>
|
||||
</Menu> <!-- End Development Tools -->
|
||||
|
||||
<!-- Education -->
|
||||
<Menu>
|
||||
<Name>Education</Name>
|
||||
<Directory>lxde-education.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>Education</Category>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Education -->
|
||||
|
||||
<!-- Games -->
|
||||
<Menu>
|
||||
<Name>Games</Name>
|
||||
<Directory>lxde-game.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>Game</Category>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Games -->
|
||||
|
||||
<!-- Graphics -->
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Directory>lxde-graphics.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>Graphics</Category>
|
||||
<Not><Category>Utility</Category></Not>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Graphics -->
|
||||
|
||||
<!-- Internet -->
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Directory>lxde-network.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>Network</Category>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Internet -->
|
||||
|
||||
<!-- LXQt-About -->
|
||||
<Menu>
|
||||
<Name>LXQt-About</Name>
|
||||
<Include>
|
||||
<Filename>lxqt-about.desktop</Filename>
|
||||
</Include>
|
||||
</Menu> <!-- End LXQt-About -->
|
||||
|
||||
<!-- Multimedia -->
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<Directory>lxde-audio-video.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>AudioVideo</Category>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Multimedia -->
|
||||
|
||||
<!-- Office -->
|
||||
<Menu>
|
||||
<Name>Office</Name>
|
||||
<Directory>lxde-office.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>Office</Category>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Office -->
|
||||
|
||||
<!-- System Tools-->
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<Directory>lxde-system-tools.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>System</Category>
|
||||
<Not><Category>Settings</Category></Not>
|
||||
<Not><Category>PackageManager</Category></Not>
|
||||
<Not><Category>X-Leave</Category></Not>
|
||||
<Not><Category>Screensaver</Category></Not>
|
||||
<Not><Filename>lxqt-about.desktop</Filename></Not>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End System Tools -->
|
||||
|
||||
<!-- Other -->
|
||||
<Menu>
|
||||
<Name>Other</Name>
|
||||
<Directory>lxde-other.directory</Directory>
|
||||
<OnlyUnallocated/>
|
||||
<Include>
|
||||
<And>
|
||||
<Not><Category>Core</Category></Not>
|
||||
<Not><Category>Settings</Category></Not>
|
||||
<Not><Category>Screensaver</Category></Not>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Other -->
|
||||
|
||||
<!-- Settings -->
|
||||
<Menu>
|
||||
<Name>DesktopSettings</Name>
|
||||
<Directory>lxde-settings.directory</Directory>
|
||||
<Menu>
|
||||
<Name>LXQtSettings</Name>
|
||||
<Directory>lxqt-settings.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>LXQt</Category>
|
||||
<Or>
|
||||
<Category>Settings</Category>
|
||||
<Category>PackageManager</Category>
|
||||
</Or>
|
||||
</And>
|
||||
<!-- Include some optional components here -->
|
||||
<Filename>obconf-qt.desktop</Filename>
|
||||
<Filename>compton-conf.desktop</Filename>
|
||||
<Filename>pcmanfm-qt-desktop-pref.desktop</Filename>
|
||||
</Include>
|
||||
<Layout>
|
||||
<Filename>lxqt-config.desktop</Filename>
|
||||
<Separator/>
|
||||
<Merge type="menus"/>
|
||||
<Merge type="files"/>
|
||||
</Layout>
|
||||
</Menu>
|
||||
<OnlyUnallocated/>
|
||||
<Include>
|
||||
<Or>
|
||||
<Category>Settings</Category>
|
||||
<Category>PackageManager</Category>
|
||||
</Or>
|
||||
</Include>
|
||||
<Exclude>
|
||||
<Or>
|
||||
<Filename>lxqt-config.desktop</Filename>
|
||||
</Or>
|
||||
</Exclude>
|
||||
<Layout>
|
||||
<Merge type="menus"/>
|
||||
<Merge type="files"/>
|
||||
</Layout>
|
||||
</Menu> <!-- End Settings -->
|
||||
|
||||
<!-- Leave -->
|
||||
<Menu>
|
||||
<Name>X-Leave</Name>
|
||||
<Directory>lxqt-leave.directory</Directory>
|
||||
<Include>
|
||||
<And>
|
||||
<Category>X-Leave</Category>
|
||||
</And>
|
||||
</Include>
|
||||
</Menu> <!-- End Leave -->
|
||||
|
||||
<!-- Screensaver -->
|
||||
<Menu>
|
||||
<Name>Screensaver</Name>
|
||||
<Include>
|
||||
<Filename>lxqt-lockscreen.desktop</Filename>
|
||||
</Include>
|
||||
</Menu> <!-- End Screensaver -->
|
||||
|
||||
<Layout>
|
||||
<Merge type="files"/>
|
||||
<Merge type="menus"/>
|
||||
<Separator/>
|
||||
<Menuname>DesktopSettings</Menuname>
|
||||
<Menuname show_empty="false" inline="true">LXQt-About</Menuname>
|
||||
<Separator/>
|
||||
<Menuname show_empty="false">X-Leave</Menuname>
|
||||
<Menuname show_empty="false" inline="true">Screensaver</Menuname>
|
||||
</Layout>
|
||||
|
||||
</Menu> <!-- End Applications -->
|
@ -0,0 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Name=Leave
|
||||
Comment=Leave Session
|
||||
Icon=system-shutdown
|
||||
Type=Directory
|
||||
|
||||
Comment[de]=Sitzung verlassen
|
||||
Name[de]=Verlassen
|
@ -0,0 +1 @@
|
||||
Name[el]=Έξοδος
|
@ -0,0 +1,3 @@
|
||||
[Desktop Entry]
|
||||
Name[fr]=Quitter
|
||||
Comment[fr]=Quitter la session
|
@ -0,0 +1,2 @@
|
||||
Comment[hu]=LXQt elhagyása
|
||||
Name[hu]=Kilépés
|
@ -0,0 +1,2 @@
|
||||
Name[it]=Esci
|
||||
Comment[it]=Chiudere la sessione
|
@ -0,0 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Name=Leave
|
||||
Comment=Leave Session
|
||||
Icon=system-shutdown
|
||||
Type=Directory
|
||||
|
||||
Comment[lt]=Užbaigti seansą
|
||||
Name[lt]=Išeiti
|
@ -0,0 +1,2 @@
|
||||
Name[pl]=Opuść
|
||||
Comment[pl]=Zakończ sesję
|
@ -0,0 +1,3 @@
|
||||
[Desktop Entry]
|
||||
Name[pt]=Sair
|
||||
Comment[pt]=Sair da sessão
|
@ -0,0 +1,11 @@
|
||||
[Desktop Entry]
|
||||
Name=Leave
|
||||
Comment=Leave Session
|
||||
Icon=system-shutdown
|
||||
Type=Directory
|
||||
|
||||
Comment[ru]=Завершить сеанс
|
||||
Name[ru]=Выйти
|
||||
|
||||
Comment[ru_RU]=Завершить сеанс
|
||||
Name[ru_RU]=Выйти
|
@ -0,0 +1 @@
|
||||
Name[de]=LXQt-Systemeinstellungen
|
@ -0,0 +1,2 @@
|
||||
Name[el]=Ρυθμίσεις LXQt
|
||||
|
@ -0,0 +1 @@
|
||||
Name[fr]=LXQt-Paramétrage du système
|
@ -0,0 +1 @@
|
||||
Name[hu]=LXQt beállítása
|
@ -0,0 +1 @@
|
||||
Name[it]=Impostazioni di LXQt
|
@ -0,0 +1 @@
|
||||
Name[lt]=LXQt nustatymai
|
@ -0,0 +1 @@
|
||||
Name[pl]=Ustawienia LXQt
|
@ -0,0 +1,2 @@
|
||||
[Desktop Entry]
|
||||
Name=Definições do LXQt
|
@ -0,0 +1,13 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Type=Directory
|
||||
Name=LXQt settings
|
||||
Icon=preferences-system
|
||||
|
||||
#TRANSLATIONS_DIR=translations
|
||||
|
||||
# Translations
|
||||
|
||||
Name[ru]=Настройки LXQt
|
||||
|
||||
Name[ru_RU]=Настройки LXQt
|
@ -1,12 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Service
|
||||
ServiceTypes=LXQtPanel/Plugin
|
||||
Name=Date & time
|
||||
Comment=Displays the current time. Comes with a calendar.
|
||||
|
||||
#TRANSLATIONS_DIR=../translations
|
||||
|
||||
|
||||
# Translations
|
||||
Comment[pl_PL]=Zegar i kalendarz
|
||||
Name[pl_PL]=Zegar
|
@ -0,0 +1,10 @@
|
||||
[Desktop Entry]
|
||||
Type=Service
|
||||
ServiceTypes=LXQtPanel/Plugin
|
||||
Name=Color picker
|
||||
Comment=Get the color under the cursor. For web developers.
|
||||
|
||||
|
||||
# Translations
|
||||
Comment[pl]=Sprawdź kolor wskazany kursorem. Przeznaczony dla web developerów.
|
||||
Name[pl]=Wybieracz kolorów
|
@ -1,12 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Service
|
||||
ServiceTypes=LXQtPanel/Plugin
|
||||
Name=Desktop switcher
|
||||
Comment=Allows easy switching between virtual desktops.
|
||||
|
||||
#TRANSLATIONS_DIR=../translations
|
||||
|
||||
|
||||
# Translations
|
||||
Comment[pl_PL]=Zezwól na przełączanie między pulpitami
|
||||
Name[pl_PL]=Zmień pulpit
|
@ -1,2 +1,2 @@
|
||||
Name[it]=Menù cartella
|
||||
Name[it]=Menu cartella
|
||||
Comment[it]=Mostra il contenuto di una cartella
|
||||
|
@ -0,0 +1,2 @@
|
||||
Name[lt]=Katalogų meniu
|
||||
Comment[lt]=Rodo meniu, kuriame rodomas katalogų turinys
|
@ -0,0 +1,2 @@
|
||||
Name[pl]=Menu katalogów
|
||||
Comment[pl]=Wyświetla menu z zawartością katalogów
|
@ -0,0 +1,2 @@
|
||||
Name[lt]=Skydelio DOM medis
|
||||
Comment[lt]=Rodyti LXQt skydelio DOM medį.
|
@ -0,0 +1,2 @@
|
||||
Name[pl]=Drzewo DOM panelu
|
||||
Comment[pl]=Wyświetla drzewo DOM panelu LXQt.
|
@ -0,0 +1,2 @@
|
||||
Name[lt]=Klaviatūros būsenos indikatorius
|
||||
Comment[lt]=Klaviatūros būsenos ir išdėstymų perjungimo įskiepis.
|
@ -0,0 +1,2 @@
|
||||
Name[pl]=Wskaźnik stanu klawiatury
|
||||
Comment[pl]=Wskaźnik i przełącznik stanu klawiatury.
|
@ -1,12 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Service
|
||||
ServiceTypes=LXQtPanel/Plugin
|
||||
Name=Application menu
|
||||
Comment=A menu of all your applications.
|
||||
|
||||
#TRANSLATIONS_DIR=../translations
|
||||
|
||||
|
||||
# Translations
|
||||
Comment[pl_PL]=Menu aplikacji
|
||||
Name[pl_PL]=Menu
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue