wok rev 12079

Add notification-daemon so notify-send from libnotify works if daemon is started with X session
author Christophe Lincoln <pankso@slitaz.org>
date Fri Mar 09 13:48:49 2012 +0100 (2012-03-09)
parents 72f6921dc161
children 6b7d9d4baac3
files notification-daemon/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/notification-daemon/receipt	Fri Mar 09 13:48:49 2012 +0100
     1.3 @@ -0,0 +1,40 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="notification-daemon"
     1.7 +VERSION="0.5.0"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Notification daemon for libnotify/notify-send"
    1.10 +MAINTAINER="pankso@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.12 +WEB_SITE="http://www.galago-project.org/"
    1.13 +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.14 +
    1.15 +DEPENDS="dbus libnotify libcanberra libwnck GConf libogg libvorbis libltdl"
    1.16 +BUILD_DEPENDS="dbus-dev libnotify-dev libcanberra-dev GConf-dev \
    1.17 +libwnck-dev libogg-dev libvorbis-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./configure \
    1.23 +		--sysconfdir=/etc \
    1.24 +		--libexecdir=/usr/bin \
    1.25 +		$CONFIGURE_ARGS && 
    1.26 +	make && make install &&
    1.27 +	rm -rf $install/usr/share/applications
    1.28 +}
    1.29 +
    1.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 +genpkg_rules()
    1.32 +{
    1.33 +	mkdir -p $fs/usr/bin $fs/usr/share
    1.34 +		#$fs/usr/share/pixmaps $fs/usr/share/applications
    1.35 +	#cp -a $install/etc $fs
    1.36 +	cp -a $install/usr/bin/$PACKAGE $fs/usr/bin
    1.37 +	cp -a $install/usr/lib $fs/usr
    1.38 +	rm $fs/usr/lib/*/*/*.*a
    1.39 +	cp -a $install/usr/share/dbus-1 $fs/usr/share
    1.40 +	#cp -a $install/usr/share/$PACKAGE $fs/usr/share
    1.41 +	#cp $install/usr/share/icons/hicolor/32x32/apps/* \
    1.42 +	#	$fs/usr/share/pixmaps
    1.43 +}