xfce4-notifyd: initial import

Replacement for notification-daemon-xfce:
https://forum.xfce.org/viewtopic.php?id=5248
This commit is contained in:
Jose V Beneyto 2015-03-17 22:11:13 +01:00
parent 914d29fcdb
commit 51c291cbf1
3 changed files with 61 additions and 0 deletions

31
xfce4-notifyd/.footprint Normal file
View File

@ -0,0 +1,31 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/xfce4-notifyd-config
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/xfce4/
drwxr-xr-x root/root usr/lib/xfce4/notifyd/
-rwxr-xr-x root/root usr/lib/xfce4/notifyd/xfce4-notifyd
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/xfce4-notifyd-config.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/applications/
-rw-r--r-- root/root usr/share/applications/xfce4-notifyd-config.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.xfce.xfce4-notifyd.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/48x48/
drwxr-xr-x root/root usr/share/icons/hicolor/48x48/apps/
-rw-r--r-- root/root usr/share/icons/hicolor/48x48/apps/xfce4-notifyd.png
drwxr-xr-x root/root usr/share/themes/
drwxr-xr-x root/root usr/share/themes/Default/
drwxr-xr-x root/root usr/share/themes/Default/xfce-notify-4.0/
-rw-r--r-- root/root usr/share/themes/Default/xfce-notify-4.0/gtkrc
drwxr-xr-x root/root usr/share/themes/Smoke/
drwxr-xr-x root/root usr/share/themes/Smoke/xfce-notify-4.0/
-rw-r--r-- root/root usr/share/themes/Smoke/xfce-notify-4.0/gtkrc
drwxr-xr-x root/root usr/share/themes/ZOMG-PONIES!/
drwxr-xr-x root/root usr/share/themes/ZOMG-PONIES!/xfce-notify-4.0/
-rw-r--r-- root/root usr/share/themes/ZOMG-PONIES!/xfce-notify-4.0/gtkrc

1
xfce4-notifyd/.md5sum Normal file
View File

@ -0,0 +1 @@
094be6f29206aac8299f27084e284e88 xfce4-notifyd-0.2.4.tar.bz2

29
xfce4-notifyd/Pkgfile Normal file
View File

@ -0,0 +1,29 @@
# Description: Xfce Notification Daemon
# URL:
# Maintainer: CRUX Xfce Team, xfce-ports at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on: libxfce4ui libnotify
# Group: xfce4
name=xfce4-notifyd
version=0.2.4
release=1
source=(http://archive.xfce.org/src/apps/$name/${version%.*}/$name-$version.tar.bz2)
build () {
cd $SRC/$name-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \
--mandir=/usr/man \
--disable-static \
--disable-debug
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/{locale,doc}
find $PKG/usr/share/applications -type f -name '*.desktop' \
-exec sed -r '/\[.+\]=/d' -i {} \;
}