[Galago-commits] r2389 - in releases/notify-daemon: . 0.3.1 0.3.1/src

galago-commits at freedesktop.org galago-commits at freedesktop.org
Wed Dec 14 16:06:03 PST 2005


Author: johnp
Date: 2005-12-14 16:05:37 -0800 (Wed, 14 Dec 2005)
New Revision: 2389

Added:
   releases/notify-daemon/0.3.1/
   releases/notify-daemon/0.3.1/ChangeLog
   releases/notify-daemon/0.3.1/NEWS
   releases/notify-daemon/0.3.1/configure.ac
   releases/notify-daemon/0.3.1/src/Makefile.am
Removed:
   releases/notify-daemon/0.3.1/ChangeLog
   releases/notify-daemon/0.3.1/NEWS
   releases/notify-daemon/0.3.1/configure.ac
   releases/notify-daemon/0.3.1/src/Makefile.am
Log:
- release 0.3.1


Copied: releases/notify-daemon/0.3.1 (from rev 2371, trunk/notify-daemon-ng)

Deleted: releases/notify-daemon/0.3.1/ChangeLog
===================================================================
--- trunk/notify-daemon-ng/ChangeLog	2005-12-13 22:16:51 UTC (rev 2371)
+++ releases/notify-daemon/0.3.1/ChangeLog	2005-12-15 00:05:37 UTC (rev 2389)
@@ -1,58 +0,0 @@
-2005-12-12  John (J5) Palmieri  <johnp at redhat.com>
-
-	* src/eggnotificationbubblewidget.c (size_request_handler): removed
-	(egg_notification_bubble_widget_init): initialize draw_arrow to FALSE
-	(_populate_window): Move adding widgets to the table to the 
-	_layout_window method
-	(draw_bubble_widget): now can draw bubble without the arrow
-	(egg_notification_bubble_widget_set_draw_arrow): New method for setting
-	whether or not we should draw the arrow
-
-	* src/notifydaemon.c (_notify_daemon_add_bubble_to_poptart_stack): new
-	method which is used for adding bubbles without x, y coordinates to the
-	"poptart" stack
-	(_remove_bubble_from_poptart_stack): removes a bubble from the stack
-	and repositions the rest of the stack
-	(notify_daemon_notify_handler): add bubble to poptart stack if no
-	no x, y location given
-
-2005-12-09  John (J5) Palmieri  <johnp at redhat.com>
-
-	* src/eggnotificationbubblewidget.c (_layout_window): Add buttons for
-	actions
-	(draw_bubble_widget): close the cairo path so courner caps work
-	(egg_notification_bubble_widget_create_button): new method to create
-	a button and add it to the bubble
-	(egg_notification_bubble_widget_clear_buttons): new method for clearing
-	up all the buttons in the bubble
-	
-	* src/notifydaemon.xml: make the Notify method async so we can get the
-	sender
-
-	* src/notifydaemon.c (_emit_action_invoked_signal):  Emits the dbus 
-	signal when one of the action buttons is clicked
-	(_emit_closed_signal): emits a Closed signal over the bus when the
-	bubble is closed
-	(_close_notification): call _emit_closed_signal
-	(_notification_daemon_handle_bubble_widget_action): new method - iternal
-	callback we hook up to the buttons' "clicked" signal
-	(notify_daemon_notify_handler): change to an async method
-	store the unique name of the sender that called us
-	setup buttons if actions have been added 
-	
-2005-11-22  John (J5) Palmieri  <johnp at redhat.com>
-
-	* src/eggnotificationbubblewidget.c: Add a more stylized bubble
-	and render in both composite and shaped window mode
-
-2005-11-15  John (J5) Palmieri  <johnp at redhat.com>
-	
-	* Change refrences from notification to notify
-
-2005-11-10  John (J5) Palmieri  <johnp at redhat.com>
-
-	* Makefile.am: remove Doxyfile.in ref 
-
-2005-11-10  John (J5) Palmieri  <johnp at redhat.com>
-
-	* Initial checkin of the next generation notification daemon

Copied: releases/notify-daemon/0.3.1/ChangeLog (from rev 2387, trunk/notify-daemon-ng/ChangeLog)

Deleted: releases/notify-daemon/0.3.1/NEWS
===================================================================

Copied: releases/notify-daemon/0.3.1/NEWS (from rev 2387, trunk/notify-daemon-ng/NEWS)

Deleted: releases/notify-daemon/0.3.1/configure.ac
===================================================================
--- trunk/notify-daemon-ng/configure.ac	2005-12-13 22:16:51 UTC (rev 2371)
+++ releases/notify-daemon/0.3.1/configure.ac	2005-12-15 00:05:37 UTC (rev 2389)
@@ -1,166 +0,0 @@
-dnl Process this file with autoconf to create configure.
-
-dnl ################################################################
-dnl # Initialize autoconf
-dnl ################################################################
-AC_INIT(notify-daemon, 0.3.1, johnp at redhat.com)
-AC_PREREQ(2.50)
-AC_CONFIG_SRCDIR(config.h.in)
-AC_COPYRIGHT([Copyright 2005 John (J5) Palmieri])
-
-
-dnl ################################################################
-dnl # Version information
-dnl ################################################################
-NOTIFY_DAEMON_MAJOR_VERSION=0
-NOTIFY_DAEMON_MINOR_VERSION=3
-NOTIFY_DAEMON_MICRO_VERSION=1
-NOTIFY_DAEMON_DEVEL_VERSION=0
-
-NOTIFY_DAEMON_VERSION=$NOTIFY_DAEMON_MAJOR_VERSION.$NOTIFY_DAEMON_MINOR_VERSION.$NOTIFY_DAEMON_MICRO_VERSION
-
-if test "x$NOTIFY_DAEMON_DEVEL_VERSION" != "x0"; then
-	if test "x$NOTIFY_DAEMON_MICRO_VERSION" = "x0"; then
-		NOTIFY_DAEMON_MICRO_VERSION=$NOTIFY_DAEMON_DEVEL_VERSION
-		NOTIFY_DAEMON_VERSION=$NOTIFY_DAEMON_MAJOR_VERSION.$NOTIFY_DAEMON_MINOR_VERSION.$NOTIFY_DAEMON_DEVEL_VERSION
-	else
-		NOTIFY_DAEMON_VERSION=$NOTIFY_DAEMON_VERSION.$NOTIFY_DAEMON_DEVEL_VERSION
-	fi
-fi
-
-AC_DEFINE_UNQUOTED(NOTIFY_DAEMON_MAJOR_VERSION, $NOTIFY_DAEMON_MAJOR_VERSION,
-	[notify-daemon major version.])
-AC_DEFINE_UNQUOTED(NOTIFY_DAEMON_MINOR_VERSION, $NOTIFY_DAEMON_MINOR_VERSION,
-	[notify-daemon minor version.])
-AC_DEFINE_UNQUOTED(NOTIFY_DAEMON_MICRO_VERSION, $NOTIFY_DAEMON_MICRO_VERSION,
-	[notify-daemon micro version.])
-AC_DEFINE_UNQUOTED(NOTIFY_DAEMON_VERSION, "$NOTIFY_DAEMON_VERSION",
-	[notify-daemon version.])
-
-dnl ################################################################
-dnl # Initialize automake
-dnl ################################################################
-VERSION=$NOTIFY_DAEMON_VERSION
-PACKAGE=notify-daemon
-
-AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
-
-dnl ################################################################
-dnl # Specify a header configuration file
-dnl ################################################################
-AM_CONFIG_HEADER(config.h)
-
-dnl ################################################################
-dnl # Check for some standard stuff.
-dnl ################################################################
-AC_PROG_CC
-#AC_ARG_PROGRAM
-AC_PROG_CPP
-AC_PROG_MAKE_SET
-AC_PROG_LN_S
-AC_PROG_INSTALL
-
-AC_C_CONST
-AC_TYPE_SIZE_T
-AC_EXEEXT
-
-AM_PROG_LIBTOOL
-
-AC_CHECK_LIB([popt], [poptGetArg], , AC_MSG_ERROR([Popt is required]))
-
-pkg_modules="gtk+-2.0 >= 2.2.2 glib-2.0 >= 2.2.2, dbus-1 >= 0.35, dbus-glib-1 >= 0.35"
-PKG_CHECK_MODULES(NOTIFY_DAEMON, [$pkg_modules])
-AC_SUBST(NOTIFY_DAEMON_CFLAGS)
-AC_SUBST(NOTIFY_DAEMON_LIBS)
-
-gdk_modules="gdk-2.0 gdk-pixbuf-2.0"
-PKG_CHECK_MODULES(GDK, [$gdk_modules], have_gdk=yes,
-[
-	have_gdk=no
-
-	AC_WARN("Some test apps will not be built")
-])
-
-AM_CONDITIONAL(HAVE_GDK, test "x$have_gdk" = "xyes")
-
-AC_SUBST(GDK_CFLAGS)
-AC_SUBST(GDK_LIBS)
-
-dnl
-dnl Check the D-BUS version.
-dnl
-
-AC_MSG_CHECKING([dbus version])
-DBUS_VERSION=`$PKG_CONFIG --modversion dbus-1`
-DBUS_MAJOR_VER=`echo $DBUS_VERSION | cut -d. -f 1`
-DBUS_MINOR_VER=`echo $DBUS_VERSION | cut -d. -f 2`
-DBUS_MICRO_VER=`echo $DBUS_VERSION | cut -d. -f 3`
-
-AC_MSG_RESULT($DBUS_VERSION)
-AC_DEFINE_UNQUOTED(DBUS_MAJOR_VER, $DBUS_MAJOR_VER, [D-BUS major version.])
-AC_DEFINE_UNQUOTED(DBUS_MINOR_VER, $DBUS_MINOR_VER, [D-BUS minor version.])
-AC_DEFINE_UNQUOTED(DBUS_MICRO_VER, $DBUS_MICRO_VER, [D-BUS micro version.])
-
-AC_DEFINE_UNQUOTED(DBUS_API_SUBJECT_TO_CHANGE, ,DBUS API is subject to change)
-
-AS_AC_EXPAND(SYSCONFDIR, $sysconfdir)
-AS_AC_EXPAND(LIBDIR, $libdir)
-AS_AC_EXPAND(DATADIR, $datadir)
-AS_AC_EXPAND(LIBEXECDIR, $libexecdir)
-
-AC_ARG_WITH(dbus-sys, [  --with-dbus-sys=<dir>   where D-BUS system.d directory is])
-AC_ARG_WITH(dbus-services, [  --with-dbus-services=<dir>   where D-BUS services directory is])
-
-if ! test -z "$with_dbus_sys" ; then
-	DBUS_SYS_DIR="$with_dbus_sys"
-else
-	DBUS_SYS_DIR="$SYSCONFDIR/dbus-1/system.d"
-fi
-
-if ! test -z "$with_dbus_services" ; then
-	DBUS_SERVICES_DIR="$with_dbus_services"
-else
-	# D-BUS 0.23 and higher use $prefix/share/dbus-1/services
-	# D-BUS 0.22 and lower use $prefix/lib/dbus-1/services
-	if test "$DBUS_MAJOR_VER" -ge 1 -o \
-	        "$DBUS_MINOR_VER" -ge 23; then
-		DBUS_SERVICES_DIR="$DATADIR/dbus-1/services"
-	else
-		DBUS_SERVICES_DIR="$LIBDIR/dbus-1/services"
-	fi
-fi
-
-AC_SUBST(DBUS_SYS_DIR)
-AC_SUBST(DBUS_SERVICES_DIR)
-AC_DEFINE_UNQUOTED(DBUS_SYSTEMD_DIR, "$DBUS_SYS_DIR", [Where system.d dir for DBUS is])
-AC_DEFINE_UNQUOTED(DBUS_SERVICES_DIR, "$DBUS_SERVICES_DIR", [Where services dir for DBUS is])
-
-dnl # Use wall if we have GCC
-if test "x$GCC" = "xyes"; then
-	CFLAGS="$CFLAGS -Wall"
-fi
-
-AC_SUBST(CFLAGS)
-
-dnl ################################################################
-dnl # Output the Makefiles
-dnl ################################################################
-AC_CONFIG_FILES([
-Makefile
-notify-daemon.service
-src/Makefile
-])
-
-AC_OUTPUT
-
-echo
-echo $PACKAGE v$VERSION
-
-echo prefix............... : $prefix
-echo dbus-1 system.d dir.. : $DBUS_SYS_DIR
-echo dbus-1 services dir.. : $DBUS_SERVICES_DIR
-
-echo "Now type make to compile"
-echo "Then su to root and type: make install"
-echo
-

Copied: releases/notify-daemon/0.3.1/configure.ac (from rev 2386, trunk/notify-daemon-ng/configure.ac)

Deleted: releases/notify-daemon/0.3.1/src/Makefile.am
===================================================================
--- trunk/notify-daemon-ng/src/Makefile.am	2005-12-13 22:16:51 UTC (rev 2371)
+++ releases/notify-daemon/0.3.1/src/Makefile.am	2005-12-15 00:05:37 UTC (rev 2389)
@@ -1,18 +0,0 @@
-INCLUDES=-I$(top_srcdir) $(NOTIFY_DAEMON_CFLAGS)
-
-EXTRA_DIST=notifydaemon.xml
-
-libexec_PROGRAMS = notify-daemon
-
-notify_daemon_SOURCES=		\
-	eggnotificationbubblewidget.c	\
-	eggnotificationbubblewidget.h	\
-	notifydaemon.c			\
-	notifydaemon.h
-
-notify_daemon_LDADD= $(NOTIFY_DAEMON_LIBS)
-
-BUILT_SOURCES = notifydaemon-dbus-glue.h
-
-notifydaemon-dbus-glue.h: notifydaemon.xml
-	dbus-binding-tool --mode=glib-server notifydaemon.xml > notifydaemon-dbus-glue.h

Copied: releases/notify-daemon/0.3.1/src/Makefile.am (from rev 2386, trunk/notify-daemon-ng/src/Makefile.am)



More information about the galago-commits mailing list