# HG changeset patch # User David Demelier # Date 1565618391 -7200 # Node ID 6a808b0ef4606d794c0c5ff2696d9ac2a08cfa4d # Parent 80314147216c6df3c0c2987a1e0899bd23c9a352 xfce/xfce4-notifyd: initial import, closes #1769 diff -r 80314147216c -r 6a808b0ef460 xfce/xfce4-notifyd/xfce4-notifyd-post.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xfce/xfce4-notifyd/xfce4-notifyd-post.sh Mon Aug 12 15:59:51 2019 +0200 @@ -0,0 +1,20 @@ +#!/bin/sh +# +# Copyright (c) 2019 David Demelier +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +# + +if [ -x /bin/gtk-update-icon-cache ]; then + /bin/gtk-update-icon-cache -fqt /share/icons/hicolor +fi diff -r 80314147216c -r 6a808b0ef460 xfce/xfce4-notifyd/xfce4-notifyd.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xfce/xfce4-notifyd/xfce4-notifyd.sh Mon Aug 12 15:59:51 2019 +0200 @@ -0,0 +1,71 @@ +#!/bin/sh +# +# Copyright (c) 2019 David Demelier +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +# + +PKGNAME=xfce4-notifyd +PKGVERSION=0.4.4 +PKGREVISION=1 +PKGLICENSE="GPLv2" +PKGSUMMARY="Xfce notifications daemon" +PKGDOWNLOAD="http://archive.xfce.org/src/apps/$PKGNAME/${PKGVERSION%.*}/$PKGNAME-$PKGVERSION.tar.bz2" +PKGDEPENDS="desktop/libnotify + graphics/gtk + xfce/libxfce4ui + xfce/libxfce4util + xfce/xfce4-panel + xfce/xfconf" +PKGOPTIONS="NLS" + +: ${CHOST:=$(uname -m)-linux-musl} +: ${CBUILD:=$(uname -m)-linux-musl} +: ${CC:=clang} +: ${CFLAGS:=-O2} +: ${LDFLAGS:=} +: ${LIBS:=} +: ${NLS:=yes} + +if [ "$NLS" = "yes" ]; then + PKGDEPENDS="core/gettext:build $PKGDEPENDS" + with_nls="--enable-nls" +else + with_nls="--disable-nls" +fi + +build() +{ + rm -rf $PKGNAME-$PKGVERSION + tar xvf $PKGNAME-$PKGVERSION.tar.bz2 + cd $PKGNAME-$PKGVERSION + + CC="$CC" \ + CFLAGS="$CFLAGS" \ + LDFLAGS="$LDFLAGS" \ + LIBS="$LIBS" \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix= \ + --localedir=/share/locale \ + --with-locales-dir=/share/locale \ + $with_nls + make + make install DESTDIR=$DESTDIR + rm -f $DESTDIR/lib/xfce4/panel/plugins/libnotification-plugin.la + rm -rf $DESTDIR/lib/systemd + + cd .. + rm -rf $PKGNAME-$PKGVERSION +} diff -r 80314147216c -r 6a808b0ef460 xfce/xfce4-notifyd/xfce4-notifyd.sha1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xfce/xfce4-notifyd/xfce4-notifyd.sha1 Mon Aug 12 15:59:51 2019 +0200 @@ -0,0 +1,1 @@ +4ff6270b95960540f34e66af76145ed3c874a282 xfce4-notifyd-0.4.4.tar.bz2