blob: fdd463bf5c6b8d218017b2d1148ac8ce503ee1c3 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/psmon/psmon-1.29.ebuild,v 1.3 2005/09/07 03:32:03 metalgod Exp $
inherit perl-module
DESCRIPTION="Monitors process table to slay aggressive, and spawn dead, processes"
HOMEPAGE="http://www.psmon.com/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND=">=dev-lang/perl-5.6.0
dev-perl/config-general
dev-perl/Proc-ProcessTable
dev-perl/Unix-Syslog
perl-core/Getopt-Long"
src_install() {
perl-module_src_install
insinto /etc
doins etc/psmon.conf
}
pkg_postinst() {
einfo "NOTICE: Please modify at least the NotifyEmail parameter"
einfo " found from the /etc/psmon.conf"
}
|