blob: 664b128ce1498ae912d0d0775e1e56bbd7e2e14a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/syslog-notify/syslog-notify-0.1.ebuild,v 1.4 2011/01/30 09:41:45 ssuominen Exp $
EAPI=2
inherit eutils
DESCRIPTION="Notifications for syslog entries via libnotify"
HOMEPAGE="http://jtniehof.github.com/syslog-notify/"
SRC_URI="http://cloud.github.com/downloads/jtniehof/${PN}/${P}.tar.bz2"
KEYWORDS="amd64 x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
DEPEND="x11-libs/libnotify"
RDEPEND="${DEPEND}
app-admin/syslog-ng"
src_prepare() {
epatch "${FILESDIR}"/${P}-libnotify-0.7.patch
}
src_install() {
dosbin src/syslog-notify || die
ebegin "Creating /var/spool/syslog-notify FIFO"
dodir /var/spool/ || die
mkfifo "${D}"var/spool/syslog-notify || die
eend $?
dodoc AUTHORS INSTALL README || die
}
pkg_postinst() {
elog "Add the following options on your"
elog "/etc/syslog-ng/syslog-ng.conf file:"
elog " # destination notify { pipe("/var/spool/syslog-notify"); };"
elog " # log { source(src); destination(notify);};"
elog "Remember to restart syslog-ng before starting syslog-notify."
}
|