diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-10-30 13:19:15 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-10-30 13:19:15 +0000 |
commit | 4cb053f77593cb05b949ce8202825f9368e19749 (patch) | |
tree | 507625752c86d5a0d9e7279786c5ba13dd7a05ca /app-admin/psmon | |
parent | Inital ebuild (diff) | |
download | historical-4cb053f77593cb05b949ce8202825f9368e19749.tar.gz historical-4cb053f77593cb05b949ce8202825f9368e19749.tar.bz2 historical-4cb053f77593cb05b949ce8202825f9368e19749.zip |
Inital ebuild
Diffstat (limited to 'app-admin/psmon')
-rw-r--r-- | app-admin/psmon/Manifest | 4 | ||||
-rw-r--r-- | app-admin/psmon/files/digest-psmon-1.0.4 | 1 | ||||
-rw-r--r-- | app-admin/psmon/psmon-1.0.4.ebuild | 38 |
3 files changed, 41 insertions, 2 deletions
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" +} |