blob: a91f192678ca2f46e949f778fb8c34f90ae35d86 (
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
31
32
33
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
MY_PN="PProcM"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="ncurses-based program to monitor CPU, disk, network and memory usage"
HOMEPAGE="http://www.fusedcreations.com/PProcM/"
SRC_URI="http://www.fusedcreations.com/PProcM/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
DEPEND="
dev-perl/POE
dev-perl/Sys-Statistics-Linux
dev-perl/IO-Pipely
dev-lang/perl"
RDEPEND="
${DEPEND}"
S="${WORKDIR}/${MY_P}"
DOCS=( AUTHORS README )
src_install() {
newbin "${MY_PN}" "${PN}"
einstalldocs
}
|