Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1 | SUMMARY = "Easily themable notification daemon with transparency effects" |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 2 | HOMEPAGE = "https://docs.xfce.org/apps/notifyd/start" |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 3 | LICENSE = "GPL-2.0-only" |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
| 5 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 6 | DEPENDS = " \ |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 7 | glib-2.0-native \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 8 | libnotify \ |
| 9 | libxfce4util \ |
| 10 | libxfce4ui \ |
| 11 | xfconf \ |
| 12 | xfce4-panel \ |
Patrick Williams | b58112e | 2024-03-07 11:16:36 -0600 | [diff] [blame] | 13 | python3-packaging-native \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 14 | " |
| 15 | |
| 16 | inherit xfce-app |
Patrick Williams | b58112e | 2024-03-07 11:16:36 -0600 | [diff] [blame] | 17 | inherit python3native |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 18 | |
Patrick Williams | 8e7b46e | 2023-05-01 14:19:06 -0500 | [diff] [blame] | 19 | SRC_URI:append = " file://xfce4-notifyd-get-var-abs-path.patch" |
| 20 | |
| 21 | SRC_URI[sha256sum] = "e3a28adb08daa1411135142a0d421e4d6050c4035a4e513a673a59460ff2ae84" |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 22 | |
| 23 | # Avoid trouble with other desktops e.g KDE which also ships dbus service named |
| 24 | # org.freedesktop.Notifications |
| 25 | EXTRA_OECONF = "--disable-dbus-start-daemon" |
| 26 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 27 | do_compile:prepend() { |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 28 | mkdir -p xfce4-notifyd xfce4-notifyd-config |
| 29 | } |
| 30 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 31 | FILES:${PN} += " \ |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 32 | ${systemd_user_unitdir} \ |
| 33 | ${datadir}/xfce4 \ |
| 34 | ${datadir}/themes \ |
| 35 | ${datadir}/dbus-1 \ |
| 36 | ${libdir}/xfce4 \ |
| 37 | " |