* Add three new required theme functions: - theme_check_init - determines if the theme is compatible with the running version of notification-daemon. - get_theme_info - returns info on the theme. - clear_notification_actions - Clears the notification action buttons on the window. * Disabled the Bubble theme for this release. It's the source of too many bugs. * Fix the scaling of different icon sizes. Now small icons display as small, and larger icons are scaled down to 48x48. * Fixed a problem where icons were being clipped in notifications. Patch by M.S. (Bug #21) * Fixed incorrect usage of GtkIconTheme. (Bug #38) * Fixed notifications with a timeout of 2147484ms or longer expiring in less than a second. (Bug #22) * Fixed a bug where a notification would duplicate its actions when updated. (Bug #30) * The Standard theme's countdown timer is now rendered using Cairo when compiled against Gtk 2.8.0 or higher. This improves the timer by making it antialiased. * Renamed notification-daemon.service to org.freedesktop.Notifications.service.
32 lines
1,011 B
Makefile
32 lines
1,011 B
Makefile
# $NetBSD: Makefile,v 1.5 2006/09/16 14:48:05 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= notification-daemon-0.3.5
|
|
CATEGORIES= sysutils gnome
|
|
MASTER_SITES= http://www.galago-project.org/files/releases/source/notification-daemon/
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://www.galago-project.org/
|
|
COMMENT= Shows notification messages on the desktop
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake intltool pkg-config
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if defined(PKG_SYSCONFDIR.dbus)
|
|
CONFIGURE_ARGS+= --with-dbus-sys=${PKG_SYSCONFDIR.dbus}/system.d
|
|
.else
|
|
CONFIGURE_ARGS+= --with-dbus-sys=${PKG_SYSCONFDIR}/dbus-1/system.d
|
|
.endif
|
|
|
|
.include "../../devel/GConf2/schemas.mk"
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/libsexy/buildlink3.mk"
|
|
.include "../../devel/libwnck/buildlink3.mk"
|
|
.include "../../sysutils/dbus/buildlink3.mk"
|
|
.include "../../sysutils/dbus-glib/buildlink3.mk"
|
|
.include "../../sysutils/libnotify/buildlink3.mk"
|
|
.include "../../x11/gtk2/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|