blob: 393195ae41fca1380c2cabe399a5308ed6e21d57 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/procps-3.1.12-r1.ebuild,v 1.12 2004/09/03 21:03:24 pvdabeel Exp $
inherit flag-o-matic eutils
IUSE="selinux"
SELINUX_PATCH="${P}-selinux.diff.bz2"
DESCRIPTION="Standard informational utilities and process-handling tools -ps top tload snice vmstat free w watch uptime pmap skill pkill kill pgrep sysctl"
SRC_URI="http://${PN}.sf.net/${P}.tar.gz"
HOMEPAGE="http://procps.sourceforge.net/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ppc sparc alpha ~hppa mips ia64"
RDEPEND=">=sys-libs/ncurses-5.2-r2"
DEPEND="${RDEPEND}
selinux? ( sys-libs/libselinux )"
src_unpack() {
unpack ${A}
cd ${S}
use selinux && epatch ${FILESDIR}/${SELINUX_PATCH}
replace-flags "-O3" "-O2"
# Use the CFLAGS from /etc/make.conf.
for file in `find . -iname "Makefile"`;do
sed -i "s:-O2:${CFLAGS}:" ${file}
done
}
src_compile() {
emake || die
}
src_install() {
einstall DESTDIR="${D}"|| die
dodoc BUGS COPYING COPYING.LIB NEWS TODO
docinto proc
dodoc proc/COPYING
docinto ps
dodoc ps/COPYING ps/HACKING
}
pkg_postinst() {
einfo "NOTE: By default \"ps\" and \"top\" no longer"
einfo "show threads. You can use the '-m' flag"
einfo "in ps or the 'H' key in top to show them"
}
|