diff options
author | Ken Moore <ken@ixsystems.com> | 2017-05-13 22:29:30 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-05-13 22:29:30 -0400 |
commit | 0a4de28011b7aec6ac21bded0944986e500b2abd (patch) | |
tree | 80204479f1a2b748a009a76edf6105b10986b554 /src-qt5 | |
parent | Fix up the new port files so they all pass portlint now. (diff) | |
download | lumina-0a4de28011b7aec6ac21bded0944986e500b2abd.tar.gz lumina-0a4de28011b7aec6ac21bded0944986e500b2abd.tar.bz2 lumina-0a4de28011b7aec6ac21bded0944986e500b2abd.zip |
Fix up the pkg-plist for all the new ports. Get rid of the auto-expansion used in the old plist.
Also change the name of the binary for lumina-notify to "lumina-notify" and add a lumina-notify.desktop file.
Diffstat (limited to 'src-qt5')
-rw-r--r-- | src-qt5/desktop-utils/lumina-notify/lumina-notify.desktop | 9 | ||||
-rw-r--r-- | src-qt5/desktop-utils/lumina-notify/lumina-notify.pro | 8 |
2 files changed, 15 insertions, 2 deletions
diff --git a/src-qt5/desktop-utils/lumina-notify/lumina-notify.desktop b/src-qt5/desktop-utils/lumina-notify/lumina-notify.desktop new file mode 100644 index 00000000..3aad94f0 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-notify/lumina-notify.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Exec=lumina-notify +Icon=clock +Terminal=false +Type=Application +StartupNotify=true +Categories=Utility; +Name=Lumina Notify +Comment=Alarm clock and notification system diff --git a/src-qt5/desktop-utils/lumina-notify/lumina-notify.pro b/src-qt5/desktop-utils/lumina-notify/lumina-notify.pro index a5840986..56684eef 100644 --- a/src-qt5/desktop-utils/lumina-notify/lumina-notify.pro +++ b/src-qt5/desktop-utils/lumina-notify/lumina-notify.pro @@ -2,15 +2,19 @@ # Created by q5sys # Released under MIT License 2017-03-08 #------------------------------------------------- -include("$${PWD}/../../OS-detect.pri") +include($${PWD}/../../OS-detect.pri) QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets -TARGET = qnotify +TARGET = lumina-notify +target.path = $${L_BINDIR} TEMPLATE = app +desktop.files=lumina-notify.desktop +desktop.path=$${L_SHAREDIR}/applications/ + DEFINES += QT_DEPRECATED_WARNINGS SOURCES += main.cpp |