diff options
Diffstat (limited to 'app-admin/tenshi/tenshi-0.10.ebuild')
-rw-r--r-- | app-admin/tenshi/tenshi-0.10.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-admin/tenshi/tenshi-0.10.ebuild b/app-admin/tenshi/tenshi-0.10.ebuild new file mode 100644 index 000000000000..28a0b27178e2 --- /dev/null +++ b/app-admin/tenshi/tenshi-0.10.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/tenshi-0.10.ebuild,v 1.1 2008/03/17 15:39:13 jokey Exp $ + +inherit eutils + +DESCRIPTION="Log parsing and notification program" +HOMEPAGE="http://dev.inversepath.com/trac/tenshi" +SRC_URI="http://dev.inversepath.com/tenshi/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="dev-lang/perl + dev-perl/IO-BufferedSelect + sys-apps/coreutils" + +pkg_setup() { + enewgroup tenshi + enewuser tenshi -1 -1 /var/lib/tenshi tenshi +} + +src_install() { + emake DESTDIR="${D}" install + fowners tenshi:root /etc/tenshi/tenshi.conf + dodir /var/lib/tenshi + fowners tenshi:root /var/lib/tenshi + doman tenshi.8 + newinitd tenshi.gentoo-init tenshi + keepdir /var/lib/tenshi +} |