summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Holzer <mholzer@gentoo.org>2003-10-30 13:19:15 +0000
committerMartin Holzer <mholzer@gentoo.org>2003-10-30 13:19:15 +0000
commit3fbbaa83797f828ab1826861d4559f80d971d1ae (patch)
tree2856eba71b465fdaa7692e17cf8f3274fc5bd96a /app-admin/psmon
parentInital ebuild (diff)
downloadgentoo-2-3fbbaa83797f828ab1826861d4559f80d971d1ae.tar.gz
gentoo-2-3fbbaa83797f828ab1826861d4559f80d971d1ae.tar.bz2
gentoo-2-3fbbaa83797f828ab1826861d4559f80d971d1ae.zip
Inital ebuild
Diffstat (limited to 'app-admin/psmon')
-rw-r--r--app-admin/psmon/ChangeLog9
-rw-r--r--app-admin/psmon/Manifest4
-rw-r--r--app-admin/psmon/files/digest-psmon-1.0.41
-rw-r--r--app-admin/psmon/psmon-1.0.4.ebuild38
4 files changed, 50 insertions, 2 deletions
diff --git a/app-admin/psmon/ChangeLog b/app-admin/psmon/ChangeLog
new file mode 100644
index 000000000000..5695f3b13ff9
--- /dev/null
+++ b/app-admin/psmon/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for app-admin/psmon
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/psmon/ChangeLog,v 1.1 2003/10/30 13:19:10 mholzer Exp $
+
+*psmon-1.0.4 (30 Oct 2003)
+
+ 30 Oct 2003; Martin Holzer <mholzer@gentoo.org> psmon-1.0.4.ebuild:
+ Inital ebuild. Submitted by Janne Pikkarainen <jaba@mikrobitti.fi> in #27237.
+
diff --git a/app-admin/psmon/Manifest b/app-admin/psmon/Manifest
index 638e405332ae..292b3eaf6e3d 100644
--- a/app-admin/psmon/Manifest
+++ b/app-admin/psmon/Manifest
@@ -1,3 +1,3 @@
-MD5 2650f4da6ed3519ed33edeac261560d0 psmon-1.0.4.ebuild 781
-MD5 b22efd5ae64bbc109b62387639a5ec35 ChangeLog 268
+MD5 bd494531e06a1a046b7a3a5a75c24df8 psmon-1.0.4.ebuild 876
+MD5 1f0956919e3736e6745e52480f671c97 ChangeLog 392
MD5 06f2d4be3cd5410b996d2fb131f911b3 files/digest-psmon-1.0.4 60
diff --git a/app-admin/psmon/files/digest-psmon-1.0.4 b/app-admin/psmon/files/digest-psmon-1.0.4
new file mode 100644
index 000000000000..9a07fe92499c
--- /dev/null
+++ b/app-admin/psmon/files/digest-psmon-1.0.4
@@ -0,0 +1 @@
+MD5 084793bd9bfd0473fda955b1c0f9ec33 psmon-1.0.4.tgz 234201
diff --git a/app-admin/psmon/psmon-1.0.4.ebuild b/app-admin/psmon/psmon-1.0.4.ebuild
new file mode 100644
index 000000000000..232cde613b5b
--- /dev/null
+++ b/app-admin/psmon/psmon-1.0.4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-admin/psmon/psmon-1.0.4.ebuild,v 1.1 2003/10/30 13:19:10 mholzer Exp $
+
+DESCRIPTION="Monitors process table to slay aggressive, and spawn dead, processes"
+HOMEPAGE="http://psmon.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+RESTRICT="nomirror"
+
+LICENSE="GPL-1"
+SLOT="0"
+
+KEYWORDS="~x86"
+IUSE=""
+DEPEND=">=perl-5.6.0
+ dev-perl/config-general
+ dev-perl/Proc-ProcessTable
+ dev-perl/Unix-Syslog
+ dev-perl/Getopt-Long"
+
+S=${WORKDIR}/${P}
+
+src_unpack() {
+ unpack ${A}
+}
+
+src_install() {
+ doman psmon.1
+ dohtml psmon.html
+ dosbin psmon
+ insinto /etc
+ newins psmon.conf psmon.conf
+}
+
+pkg_postinst() {
+ einfo "NOTICE: Please modify at least the NotifyEmail parameter"
+ einfo " found from the /etc/psmon.conf"
+}