summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Holland <tigger@gentoo.org>2004-07-21 14:53:06 +0000
committerRob Holland <tigger@gentoo.org>2004-07-21 14:53:06 +0000
commitfadf11999756f6c2272a9dbe24fa1a2bba609af8 (patch)
tree311dd21823f8314f40252a5a9ae86176e00d9b08 /app-admin/tenshi
parentbump (diff)
downloadhistorical-fadf11999756f6c2272a9dbe24fa1a2bba609af8.tar.gz
historical-fadf11999756f6c2272a9dbe24fa1a2bba609af8.tar.bz2
historical-fadf11999756f6c2272a9dbe24fa1a2bba609af8.zip
version bump
Diffstat (limited to 'app-admin/tenshi')
-rw-r--r--app-admin/tenshi/ChangeLog5
-rw-r--r--app-admin/tenshi/Manifest4
-rw-r--r--app-admin/tenshi/files/digest-tenshi-0.3.11
-rw-r--r--app-admin/tenshi/tenshi-0.3.1.ebuild47
4 files changed, 55 insertions, 2 deletions
diff --git a/app-admin/tenshi/ChangeLog b/app-admin/tenshi/ChangeLog
index 620765cf83e5..3b2a74a1df4e 100644
--- a/app-admin/tenshi/ChangeLog
+++ b/app-admin/tenshi/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-admin/tenshi
# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/ChangeLog,v 1.1 2004/07/15 22:17:16 tigger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/ChangeLog,v 1.2 2004/07/21 14:53:06 tigger Exp $
+
+ 21 Jul 2004; Rob Holland <tigger@gentoo.org> :
+ version bump
*tenshi-0.3 (15 Jul 2004)
diff --git a/app-admin/tenshi/Manifest b/app-admin/tenshi/Manifest
index e9eb366ab813..be0fc6df08e5 100644
--- a/app-admin/tenshi/Manifest
+++ b/app-admin/tenshi/Manifest
@@ -1,4 +1,6 @@
+MD5 e422993b46b395d871d41bd1c0482425 tenshi-0.3.1.ebuild 1392
MD5 fac3c15cc47fbc397c34a2b7dc044f3b tenshi-0.3.ebuild 1390
-MD5 c4977a1ad54ad19586d4d5fde1c69e61 ChangeLog 327
+MD5 a4c1fafcc0831a6c97c5d95f1cc55bd0 ChangeLog 392
MD5 f572ebddd176b9af5659db0d96b0c063 metadata.xml 263
MD5 1742326091319f22ccc1e3a3e0a52666 files/digest-tenshi-0.3 61
+MD5 a91c1a0d1f95fa0deddd25f6f9623deb files/digest-tenshi-0.3.1 63
diff --git a/app-admin/tenshi/files/digest-tenshi-0.3.1 b/app-admin/tenshi/files/digest-tenshi-0.3.1
new file mode 100644
index 000000000000..1d3018a234e3
--- /dev/null
+++ b/app-admin/tenshi/files/digest-tenshi-0.3.1
@@ -0,0 +1 @@
+MD5 533753fe46ae6b2e7a5334dd9ca292fa tenshi-0.3.1.tar.gz 21416
diff --git a/app-admin/tenshi/tenshi-0.3.1.ebuild b/app-admin/tenshi/tenshi-0.3.1.ebuild
new file mode 100644
index 000000000000..1680de30654c
--- /dev/null
+++ b/app-admin/tenshi/tenshi-0.3.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/tenshi/tenshi-0.3.1.ebuild,v 1.1 2004/07/21 14:51:17 tigger Exp $
+
+inherit eutils
+
+DESCRIPTION="Log parsing and notification program"
+HOMEPAGE="http://www.gentoo.org/~lcars/tenshi"
+SRC_URI="http://www.gentoo.org/~lcars/tenshi/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc"
+IUSE=""
+
+RDEPEND="dev-lang/perl
+ sys-apps/coreutils"
+
+pkg_preinst() {
+ enewgroup tenshi
+ enewuser tenshi -1 /bin/false /var/lib/tenshi tenshi
+ fowners tenshi:root /etc/tenshi/tenshi.conf
+ fowners tenshi:root /var/lib/tenshi
+}
+
+src_install() {
+ sed -i -e "s:-o tenshi::" Makefile
+ emake DESTDIR=${D} install
+ doman tenshi.8
+ exeinto /etc/init.d
+ newexe tenshi.gentoo-init tenshi
+ keepdir /var/lib/tenshi
+}
+
+pkg_postinst() {
+ einfo
+ einfo "This app was formerly known as wasabi. The name was changed"
+ einfo "due to trademark issues. If you are upgrading from an old"
+ einfo "wasabi version please consider removing the 'wasabi' user"
+ einfo "which was created by the old ebuilds."
+ einfo
+ einfo "Please also be aware that if upgrading from versions <=0.2"
+ einfo "the configuration syntax for time intervals has changed to"
+ einfo "crontab style entries, old configurations won't work. Please"
+ einfo "check the manpage for full details."
+ einfo
+}