Package Details: syslog-notify 0.2-1

Git Clone URL: https://aur.archlinux.org/syslog-notify.git (read-only, click to copy)
Package Base: syslog-notify
Description: Pop-up display for system log messages
Upstream URL: http://jtniehof.github.com/syslog-notify
Licenses: GPL
Submitter: filand
Maintainer: micwoj92
Last Packager: micwoj92
Votes: 7
Popularity: 0.63
First Submitted: 2010-02-09 21:35 (UTC)
Last Updated: 2024-03-31 09:37 (UTC)

Latest Comments

freedomsha commented on 2018-02-06 23:40 (UTC) (edited on 2018-02-06 23:52 (UTC) by freedomsha)

Contributor: Filipp "Scorp" Andjelo scorp@mailueberfall.de

pkgname=syslog-notify pkgver=0.2 pkgrel=2 pkgdesc="Pop-up display for system log messages" arch=('i686' 'x86_64') url="http://jtniehof.github.com/syslog-notify" license=('GPL') depends=('libnotify') install=${pkgname}.install source=(http://github.com/downloads/jtniehof/syslog-notify/${pkgname}-${pkgver}.tar.bz2)

${pkgname}.patch)

md5sums=(#'18474e11ceb0add6e8b70fe7680f0abf' #'3dc49b913d4ee1a00426fb993770084d' 'd8cdacb9296d45a558a135cc9d14660f')

build() { cd ${srcdir}/${pkgname}-${pkgver}

patch -p1 -i ${srcdir}/${pkgname}.patch

./configure --prefix=/usr make }

package() { cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR=${pkgdir} install }

=== To use syslog-notify you must redirect syslog output to the pipe '/var/spool/syslog-notify'

Example for syslog-ng (add to /etc/syslog-ng.conf): destination d_syslog_notify { pipe("/var/spool/syslog-notify"); }; log { source(src); destination(d_syslog_notify); };

Consult the manual of the syslog daemon used on your system for accordant information

filand commented on 2011-03-31 20:18 (UTC)

Thank you for your contribution! I've uploaded the fixed version now.

khampf commented on 2011-03-31 13:39 (UTC)

Fix for compilation error (shared upstream): too many arguments to function ‘notify_notification_new’ syslog-notify.patch http://pastebin.com/Pe3xXtah PKGBUILD: http://pastebin.com/1x4KZepW

khampf commented on 2011-03-04 12:46 (UTC)

# snippet for syslog-ng.conf # make a pipe for syslog-notify that can be used by members of the group "wheel" destination d_syslog_notify { pipe("/var/spool/syslog-notify" group("wheel") perm(0660)); }; log { source(src); destination(d_syslog_notify); };