From b165ebd69c455e6d0935b225f0567f3afc55e100 Mon Sep 17 00:00:00 2001 From: fredjo Date: Fri, 6 Nov 2009 12:47:11 +0100 Subject: Ajout de notification-daemon#0.4.0-1 --- gnome/notification-daemon/.footprint | 43 ++++++++++++++++++++++++++++++++++ gnome/notification-daemon/.md5sum | 1 + gnome/notification-daemon/Pkgfile | 20 ++++++++++++++++ gnome/notification-daemon/post-install | 23 ++++++++++++++++++ 4 files changed, 87 insertions(+) create mode 100644 gnome/notification-daemon/.footprint create mode 100644 gnome/notification-daemon/.md5sum create mode 100644 gnome/notification-daemon/Pkgfile create mode 100755 gnome/notification-daemon/post-install diff --git a/gnome/notification-daemon/.footprint b/gnome/notification-daemon/.footprint new file mode 100644 index 000000000..478c737a4 --- /dev/null +++ b/gnome/notification-daemon/.footprint @@ -0,0 +1,43 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/gconf/ +drwxr-xr-x root/root etc/gconf/schemas/ +-rw-r--r-- root/root etc/gconf/schemas/notification-daemon.schemas +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/notification-properties +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/notification-daemon-1.0/ +drwxr-xr-x root/root usr/lib/notification-daemon-1.0/engines/ +-rw-r--r-- root/root usr/lib/notification-daemon-1.0/engines/libstandard.a +-rwxr-xr-x root/root usr/lib/notification-daemon-1.0/engines/libstandard.la +-rwxr-xr-x root/root usr/lib/notification-daemon-1.0/engines/libstandard.so +drwxr-xr-x root/root usr/lib/notification-daemon/ +-rwxr-xr-x root/root usr/lib/notification-daemon/notification-daemon +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/applications/ +-rw-r--r-- root/root usr/share/applications/notification-properties.desktop +drwxr-xr-x root/root usr/share/dbus-1/ +drwxr-xr-x root/root usr/share/dbus-1/services/ +-rw-r--r-- root/root usr/share/dbus-1/services/org.freedesktop.Notifications.service +drwxr-xr-x root/root usr/share/icons/ +drwxr-xr-x root/root usr/share/icons/hicolor/ +drwxr-xr-x root/root usr/share/icons/hicolor/16x16/ +drwxr-xr-x root/root usr/share/icons/hicolor/16x16/apps/ +-rw-r--r-- root/root usr/share/icons/hicolor/16x16/apps/notification-properties.png +drwxr-xr-x root/root usr/share/icons/hicolor/22x22/ +drwxr-xr-x root/root usr/share/icons/hicolor/22x22/apps/ +-rw-r--r-- root/root usr/share/icons/hicolor/22x22/apps/notification-properties.png +drwxr-xr-x root/root usr/share/icons/hicolor/24x24/ +drwxr-xr-x root/root usr/share/icons/hicolor/24x24/apps/ +-rw-r--r-- root/root usr/share/icons/hicolor/24x24/apps/notification-properties.png +drwxr-xr-x root/root usr/share/icons/hicolor/32x32/ +drwxr-xr-x root/root usr/share/icons/hicolor/32x32/apps/ +-rw-r--r-- root/root usr/share/icons/hicolor/32x32/apps/notification-properties.png +drwxr-xr-x root/root usr/share/icons/hicolor/48x48/ +drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/ +-rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/notification-properties.png +drwxr-xr-x root/root usr/share/icons/hicolor/scalable/ +drwxr-xr-x root/root usr/share/icons/hicolor/scalable/apps/ +-rw-r--r-- root/root usr/share/icons/hicolor/scalable/apps/notification-properties.svg +drwxr-xr-x root/root usr/share/notification-daemon/ +-rw-r--r-- root/root usr/share/notification-daemon/notification-properties.glade diff --git a/gnome/notification-daemon/.md5sum b/gnome/notification-daemon/.md5sum new file mode 100644 index 000000000..11147784d --- /dev/null +++ b/gnome/notification-daemon/.md5sum @@ -0,0 +1 @@ +281624263e3fc82c888dd7433a37194b notification-daemon-0.4.0.tar.gz diff --git a/gnome/notification-daemon/Pkgfile b/gnome/notification-daemon/Pkgfile new file mode 100644 index 000000000..b6a39f1cb --- /dev/null +++ b/gnome/notification-daemon/Pkgfile @@ -0,0 +1,20 @@ +# Description: Galago Project notification daemon +# URL: http://www.galago-project.org/ +# Maintainer: Matt Housh, jaeger at morpheus dot net +# Depends on: dbus-glib, libsexy, libwnck, gconf + +name=notification-daemon +version=0.4.0 +release=1 +source=(http://www.galago-project.org/files/releases/source/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=$GNOME_PREFIX \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/$name \ + --disable-schemas-install + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/share/locale +} diff --git a/gnome/notification-daemon/post-install b/gnome/notification-daemon/post-install new file mode 100755 index 000000000..54ba483dd --- /dev/null +++ b/gnome/notification-daemon/post-install @@ -0,0 +1,23 @@ +#!/bin/sh + +port=notification-daemon + +# gconf schemas +SCHEMAS="`pkginfo -l $port | grep etc/gconf/schemas/.*\.schemas$`" + +for SCHEMA in $SCHEMAS +do + export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` + gconftool-2 --makefile-install-rule /$SCHEMA > /dev/null +done + +# reload gconf caches +if [ ! -z "`pidof gconfd-2`" ] +then + killall -HUP gconfd-2 > /dev/null +fi + +# desktop database +update-desktop-database > /dev/null + +# End of file -- cgit v1.2.3-54-g00ecf