2020-08-17 22:19:01 +02:00
|
|
|
# $NetBSD: Makefile,v 1.21 2020/08/17 20:20:24 leot Exp $
|
2016-06-12 00:07:01 +02:00
|
|
|
|
2020-07-29 14:27:13 +02:00
|
|
|
DISTNAME= dunst-1.5.0
|
2020-08-17 22:19:01 +02:00
|
|
|
PKGREVISION= 1
|
2016-06-12 00:07:01 +02:00
|
|
|
CATEGORIES= x11
|
2017-07-20 12:39:25 +02:00
|
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=dunst-project/}
|
|
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
2016-06-12 00:07:01 +02:00
|
|
|
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
2017-07-20 12:39:25 +02:00
|
|
|
HOMEPAGE= https://dunst-project.org/
|
2016-06-12 00:07:01 +02:00
|
|
|
COMMENT= Customizable and lightweight notification-daemon
|
|
|
|
LICENSE= modified-bsd
|
|
|
|
|
2019-06-15 17:02:13 +02:00
|
|
|
USE_TOOLS+= gmake pod2man pkg-config
|
2016-06-12 00:07:01 +02:00
|
|
|
|
|
|
|
MAKE_FLAGS+= MANPREFIX=${PREFIX}/${PKGMANDIR}
|
dunst: Update to 1.4.0
1.4.0 - 2019-03-30
Added
Add support to override frame_color via rules (#498)
Support for round corners (#420)
Ability to reference $HOME in icon paths with ~/ (#520)
Support to customize the mouse bindings (#530)
Command to toggle pause status (#535)
Ability to automatically replace similar notifications (like volume changes) via stack_tag (#552)
Comparison of raw icons for duplicate notifications (#571)
Introduce new desktop-entry filter (#470)
fullscreen rule to hide notifications when a fullscreen window is active (#472)
Added skip_display rule option to skip initial notification display, and include the notification in the history. (#590)
Fixed
Notification age not counting the time while the computer was suspended (#492)
Dunst losing always-on-top status on a window manager restart (#160)
Xpm icons not being recognized
When new notifications arrive, but display is full, important notifications don’t have to wait for a timeout in a displayed notification (#541)
Dunst hanging while the context menu is open (#456)
Having & inside a notification breaking markup (#546)
<I> more notifications don’t occupy space anymore, if there is only a single notification waiting to get displayed. The notification gets displayed directly (#467)
Segfault when comparing icon name with a notification with a raw icon (#536)
Icon size can no longer be larger than the notification when a fixed width is specified (#540)
Changed
Transient notifications no longer skip history by default (#508)
The notification summary no longer accepts markup (#497)
Removed
Dependency on libxdg-basedir (#550)
1.3.2 - 2018-05-06
Fixed
Crash when trying to load an invalid or corrupt icon (#512)
1.3.1 - 2018-01-30
Fixed
Race condition resulting in the service files being empty (#488)
1.3.0 - 2018-01-05
Added
ellipsize option to control how long lines should be ellipsized when word_wrap is set to false (#374)
A beginning tilde of a path is now expanded to the home of the current user (#351)
The image-path hint is now respected, as GApplications send their icon only via this link (#447)
The (legacy) image_data hint is now respected (#353)
If dunst can’t acquire the DBus name, dunst prints the PID of the process holding the name (#458 #460)
Increased accuracy of timeouts by using microseconds internally (#379 #291)
Support for specifying timeout values in milliseconds, minutes, hours, or days. (#379)
Support for HTML img tags (via context menu) (#428)
Fixed
new_icon rule being ignored on notifications that had a raw icon (#423)
Format strings being replaced recursively in some cases (#322 #365)
DBus related memory leaks (#397)
Crash on X11 servers with RandR support less than 1.5. (#413 #364)
Silently reading the default config file, if -conf did not specify a valid file (#452)
Notification window flickering when a notification is replaced (#320 #415)
Inaccurate timeout in some cases (#291 #379)
Changed
Transient hints are now handled (#343 #310) An additional rule option (match_transient and set_transient) is added to optionally reset the transient setting
HTML links are now referred to by their text in the context menu rather than numbers (#428)
icon_folders setting renamed to icon_path (#170)
config.def.h and config.h got merged (#371)
The dependency on GTK3+ has been removed. Instead of GTK3+, dunst now requires gdk-pixbuf which had been a transient dependency before. (#334 #376)
The _GNU_SOURCE macros had been removed to make dunst portable to nonGNU systems (#403)
Internal refactorings of the notification queue handling. (#411)
Dunst does now install the systemd and dbus service files into their proper location given by pkg-config. Use SERVICEDIR_(DBUS|SYSTEMD) params to overwrite them. (#463)
2019-06-10 15:06:54 +02:00
|
|
|
MAKE_FLAGS+= SYSTEMD=0
|
2016-06-12 00:07:01 +02:00
|
|
|
|
2016-06-14 00:40:26 +02:00
|
|
|
SUBST_CLASSES+= fix-paths
|
|
|
|
SUBST_STAGE.fix-paths= pre-configure
|
|
|
|
SUBST_MESSAGE.fix-paths= Fixing absolute paths.
|
2016-06-14 20:14:17 +02:00
|
|
|
SUBST_FILES.fix-paths= dunstrc config.h
|
2016-06-14 00:40:26 +02:00
|
|
|
SUBST_SED.fix-paths+= -e 's,/usr/bin,${PREFIX}/bin,g'
|
|
|
|
SUBST_SED.fix-paths+= -e 's,/usr/share,${PREFIX}/share,g'
|
|
|
|
|
dunst: Update to 1.4.0
1.4.0 - 2019-03-30
Added
Add support to override frame_color via rules (#498)
Support for round corners (#420)
Ability to reference $HOME in icon paths with ~/ (#520)
Support to customize the mouse bindings (#530)
Command to toggle pause status (#535)
Ability to automatically replace similar notifications (like volume changes) via stack_tag (#552)
Comparison of raw icons for duplicate notifications (#571)
Introduce new desktop-entry filter (#470)
fullscreen rule to hide notifications when a fullscreen window is active (#472)
Added skip_display rule option to skip initial notification display, and include the notification in the history. (#590)
Fixed
Notification age not counting the time while the computer was suspended (#492)
Dunst losing always-on-top status on a window manager restart (#160)
Xpm icons not being recognized
When new notifications arrive, but display is full, important notifications don’t have to wait for a timeout in a displayed notification (#541)
Dunst hanging while the context menu is open (#456)
Having & inside a notification breaking markup (#546)
<I> more notifications don’t occupy space anymore, if there is only a single notification waiting to get displayed. The notification gets displayed directly (#467)
Segfault when comparing icon name with a notification with a raw icon (#536)
Icon size can no longer be larger than the notification when a fixed width is specified (#540)
Changed
Transient notifications no longer skip history by default (#508)
The notification summary no longer accepts markup (#497)
Removed
Dependency on libxdg-basedir (#550)
1.3.2 - 2018-05-06
Fixed
Crash when trying to load an invalid or corrupt icon (#512)
1.3.1 - 2018-01-30
Fixed
Race condition resulting in the service files being empty (#488)
1.3.0 - 2018-01-05
Added
ellipsize option to control how long lines should be ellipsized when word_wrap is set to false (#374)
A beginning tilde of a path is now expanded to the home of the current user (#351)
The image-path hint is now respected, as GApplications send their icon only via this link (#447)
The (legacy) image_data hint is now respected (#353)
If dunst can’t acquire the DBus name, dunst prints the PID of the process holding the name (#458 #460)
Increased accuracy of timeouts by using microseconds internally (#379 #291)
Support for specifying timeout values in milliseconds, minutes, hours, or days. (#379)
Support for HTML img tags (via context menu) (#428)
Fixed
new_icon rule being ignored on notifications that had a raw icon (#423)
Format strings being replaced recursively in some cases (#322 #365)
DBus related memory leaks (#397)
Crash on X11 servers with RandR support less than 1.5. (#413 #364)
Silently reading the default config file, if -conf did not specify a valid file (#452)
Notification window flickering when a notification is replaced (#320 #415)
Inaccurate timeout in some cases (#291 #379)
Changed
Transient hints are now handled (#343 #310) An additional rule option (match_transient and set_transient) is added to optionally reset the transient setting
HTML links are now referred to by their text in the context menu rather than numbers (#428)
icon_folders setting renamed to icon_path (#170)
config.def.h and config.h got merged (#371)
The dependency on GTK3+ has been removed. Instead of GTK3+, dunst now requires gdk-pixbuf which had been a transient dependency before. (#334 #376)
The _GNU_SOURCE macros had been removed to make dunst portable to nonGNU systems (#403)
Internal refactorings of the notification queue handling. (#411)
Dunst does now install the systemd and dbus service files into their proper location given by pkg-config. Use SERVICEDIR_(DBUS|SYSTEMD) params to overwrite them. (#463)
2019-06-10 15:06:54 +02:00
|
|
|
INSTALLATION_DIRS+= bin
|
|
|
|
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
|
|
|
|
INSTALLATION_DIRS+= share/dbus-1/services
|
|
|
|
INSTALLATION_DIRS+= share/dunst
|
|
|
|
|
2016-06-12 00:07:01 +02:00
|
|
|
.include "../../devel/pango/buildlink3.mk"
|
dunst: Update to 1.4.0
1.4.0 - 2019-03-30
Added
Add support to override frame_color via rules (#498)
Support for round corners (#420)
Ability to reference $HOME in icon paths with ~/ (#520)
Support to customize the mouse bindings (#530)
Command to toggle pause status (#535)
Ability to automatically replace similar notifications (like volume changes) via stack_tag (#552)
Comparison of raw icons for duplicate notifications (#571)
Introduce new desktop-entry filter (#470)
fullscreen rule to hide notifications when a fullscreen window is active (#472)
Added skip_display rule option to skip initial notification display, and include the notification in the history. (#590)
Fixed
Notification age not counting the time while the computer was suspended (#492)
Dunst losing always-on-top status on a window manager restart (#160)
Xpm icons not being recognized
When new notifications arrive, but display is full, important notifications don’t have to wait for a timeout in a displayed notification (#541)
Dunst hanging while the context menu is open (#456)
Having & inside a notification breaking markup (#546)
<I> more notifications don’t occupy space anymore, if there is only a single notification waiting to get displayed. The notification gets displayed directly (#467)
Segfault when comparing icon name with a notification with a raw icon (#536)
Icon size can no longer be larger than the notification when a fixed width is specified (#540)
Changed
Transient notifications no longer skip history by default (#508)
The notification summary no longer accepts markup (#497)
Removed
Dependency on libxdg-basedir (#550)
1.3.2 - 2018-05-06
Fixed
Crash when trying to load an invalid or corrupt icon (#512)
1.3.1 - 2018-01-30
Fixed
Race condition resulting in the service files being empty (#488)
1.3.0 - 2018-01-05
Added
ellipsize option to control how long lines should be ellipsized when word_wrap is set to false (#374)
A beginning tilde of a path is now expanded to the home of the current user (#351)
The image-path hint is now respected, as GApplications send their icon only via this link (#447)
The (legacy) image_data hint is now respected (#353)
If dunst can’t acquire the DBus name, dunst prints the PID of the process holding the name (#458 #460)
Increased accuracy of timeouts by using microseconds internally (#379 #291)
Support for specifying timeout values in milliseconds, minutes, hours, or days. (#379)
Support for HTML img tags (via context menu) (#428)
Fixed
new_icon rule being ignored on notifications that had a raw icon (#423)
Format strings being replaced recursively in some cases (#322 #365)
DBus related memory leaks (#397)
Crash on X11 servers with RandR support less than 1.5. (#413 #364)
Silently reading the default config file, if -conf did not specify a valid file (#452)
Notification window flickering when a notification is replaced (#320 #415)
Inaccurate timeout in some cases (#291 #379)
Changed
Transient hints are now handled (#343 #310) An additional rule option (match_transient and set_transient) is added to optionally reset the transient setting
HTML links are now referred to by their text in the context menu rather than numbers (#428)
icon_folders setting renamed to icon_path (#170)
config.def.h and config.h got merged (#371)
The dependency on GTK3+ has been removed. Instead of GTK3+, dunst now requires gdk-pixbuf which had been a transient dependency before. (#334 #376)
The _GNU_SOURCE macros had been removed to make dunst portable to nonGNU systems (#403)
Internal refactorings of the notification queue handling. (#411)
Dunst does now install the systemd and dbus service files into their proper location given by pkg-config. Use SERVICEDIR_(DBUS|SYSTEMD) params to overwrite them. (#463)
2019-06-10 15:06:54 +02:00
|
|
|
.include "../../graphics/gdk-pixbuf2/buildlink3.mk"
|
2016-06-12 00:07:01 +02:00
|
|
|
.include "../../sysutils/dbus/buildlink3.mk"
|
2020-07-29 14:27:13 +02:00
|
|
|
.include "../../sysutils/libnotify/buildlink3.mk"
|
dunst: Update to 1.4.0
1.4.0 - 2019-03-30
Added
Add support to override frame_color via rules (#498)
Support for round corners (#420)
Ability to reference $HOME in icon paths with ~/ (#520)
Support to customize the mouse bindings (#530)
Command to toggle pause status (#535)
Ability to automatically replace similar notifications (like volume changes) via stack_tag (#552)
Comparison of raw icons for duplicate notifications (#571)
Introduce new desktop-entry filter (#470)
fullscreen rule to hide notifications when a fullscreen window is active (#472)
Added skip_display rule option to skip initial notification display, and include the notification in the history. (#590)
Fixed
Notification age not counting the time while the computer was suspended (#492)
Dunst losing always-on-top status on a window manager restart (#160)
Xpm icons not being recognized
When new notifications arrive, but display is full, important notifications don’t have to wait for a timeout in a displayed notification (#541)
Dunst hanging while the context menu is open (#456)
Having & inside a notification breaking markup (#546)
<I> more notifications don’t occupy space anymore, if there is only a single notification waiting to get displayed. The notification gets displayed directly (#467)
Segfault when comparing icon name with a notification with a raw icon (#536)
Icon size can no longer be larger than the notification when a fixed width is specified (#540)
Changed
Transient notifications no longer skip history by default (#508)
The notification summary no longer accepts markup (#497)
Removed
Dependency on libxdg-basedir (#550)
1.3.2 - 2018-05-06
Fixed
Crash when trying to load an invalid or corrupt icon (#512)
1.3.1 - 2018-01-30
Fixed
Race condition resulting in the service files being empty (#488)
1.3.0 - 2018-01-05
Added
ellipsize option to control how long lines should be ellipsized when word_wrap is set to false (#374)
A beginning tilde of a path is now expanded to the home of the current user (#351)
The image-path hint is now respected, as GApplications send their icon only via this link (#447)
The (legacy) image_data hint is now respected (#353)
If dunst can’t acquire the DBus name, dunst prints the PID of the process holding the name (#458 #460)
Increased accuracy of timeouts by using microseconds internally (#379 #291)
Support for specifying timeout values in milliseconds, minutes, hours, or days. (#379)
Support for HTML img tags (via context menu) (#428)
Fixed
new_icon rule being ignored on notifications that had a raw icon (#423)
Format strings being replaced recursively in some cases (#322 #365)
DBus related memory leaks (#397)
Crash on X11 servers with RandR support less than 1.5. (#413 #364)
Silently reading the default config file, if -conf did not specify a valid file (#452)
Notification window flickering when a notification is replaced (#320 #415)
Inaccurate timeout in some cases (#291 #379)
Changed
Transient hints are now handled (#343 #310) An additional rule option (match_transient and set_transient) is added to optionally reset the transient setting
HTML links are now referred to by their text in the context menu rather than numbers (#428)
icon_folders setting renamed to icon_path (#170)
config.def.h and config.h got merged (#371)
The dependency on GTK3+ has been removed. Instead of GTK3+, dunst now requires gdk-pixbuf which had been a transient dependency before. (#334 #376)
The _GNU_SOURCE macros had been removed to make dunst portable to nonGNU systems (#403)
Internal refactorings of the notification queue handling. (#411)
Dunst does now install the systemd and dbus service files into their proper location given by pkg-config. Use SERVICEDIR_(DBUS|SYSTEMD) params to overwrite them. (#463)
2019-06-10 15:06:54 +02:00
|
|
|
.include "../../x11/libX11/buildlink3.mk"
|
2016-06-17 21:24:35 +02:00
|
|
|
.include "../../x11/libXScrnSaver/buildlink3.mk"
|
dunst: Update to 1.4.0
1.4.0 - 2019-03-30
Added
Add support to override frame_color via rules (#498)
Support for round corners (#420)
Ability to reference $HOME in icon paths with ~/ (#520)
Support to customize the mouse bindings (#530)
Command to toggle pause status (#535)
Ability to automatically replace similar notifications (like volume changes) via stack_tag (#552)
Comparison of raw icons for duplicate notifications (#571)
Introduce new desktop-entry filter (#470)
fullscreen rule to hide notifications when a fullscreen window is active (#472)
Added skip_display rule option to skip initial notification display, and include the notification in the history. (#590)
Fixed
Notification age not counting the time while the computer was suspended (#492)
Dunst losing always-on-top status on a window manager restart (#160)
Xpm icons not being recognized
When new notifications arrive, but display is full, important notifications don’t have to wait for a timeout in a displayed notification (#541)
Dunst hanging while the context menu is open (#456)
Having & inside a notification breaking markup (#546)
<I> more notifications don’t occupy space anymore, if there is only a single notification waiting to get displayed. The notification gets displayed directly (#467)
Segfault when comparing icon name with a notification with a raw icon (#536)
Icon size can no longer be larger than the notification when a fixed width is specified (#540)
Changed
Transient notifications no longer skip history by default (#508)
The notification summary no longer accepts markup (#497)
Removed
Dependency on libxdg-basedir (#550)
1.3.2 - 2018-05-06
Fixed
Crash when trying to load an invalid or corrupt icon (#512)
1.3.1 - 2018-01-30
Fixed
Race condition resulting in the service files being empty (#488)
1.3.0 - 2018-01-05
Added
ellipsize option to control how long lines should be ellipsized when word_wrap is set to false (#374)
A beginning tilde of a path is now expanded to the home of the current user (#351)
The image-path hint is now respected, as GApplications send their icon only via this link (#447)
The (legacy) image_data hint is now respected (#353)
If dunst can’t acquire the DBus name, dunst prints the PID of the process holding the name (#458 #460)
Increased accuracy of timeouts by using microseconds internally (#379 #291)
Support for specifying timeout values in milliseconds, minutes, hours, or days. (#379)
Support for HTML img tags (via context menu) (#428)
Fixed
new_icon rule being ignored on notifications that had a raw icon (#423)
Format strings being replaced recursively in some cases (#322 #365)
DBus related memory leaks (#397)
Crash on X11 servers with RandR support less than 1.5. (#413 #364)
Silently reading the default config file, if -conf did not specify a valid file (#452)
Notification window flickering when a notification is replaced (#320 #415)
Inaccurate timeout in some cases (#291 #379)
Changed
Transient hints are now handled (#343 #310) An additional rule option (match_transient and set_transient) is added to optionally reset the transient setting
HTML links are now referred to by their text in the context menu rather than numbers (#428)
icon_folders setting renamed to icon_path (#170)
config.def.h and config.h got merged (#371)
The dependency on GTK3+ has been removed. Instead of GTK3+, dunst now requires gdk-pixbuf which had been a transient dependency before. (#334 #376)
The _GNU_SOURCE macros had been removed to make dunst portable to nonGNU systems (#403)
Internal refactorings of the notification queue handling. (#411)
Dunst does now install the systemd and dbus service files into their proper location given by pkg-config. Use SERVICEDIR_(DBUS|SYSTEMD) params to overwrite them. (#463)
2019-06-10 15:06:54 +02:00
|
|
|
.include "../../x11/libXext/buildlink3.mk"
|
2016-06-17 21:24:35 +02:00
|
|
|
.include "../../x11/libXinerama/buildlink3.mk"
|
2017-07-20 12:39:25 +02:00
|
|
|
.include "../../x11/libXrandr/buildlink3.mk"
|
2016-06-12 00:07:01 +02:00
|
|
|
.include "../../mk/bsd.pkg.mk"
|