blob: 8479518d2ff06fdb784e6c8dde7065b620d6cd31 (
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
|
# 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.2.2-r1.ebuild,v 1.4 2004/09/03 21:03:24 pvdabeel Exp $
inherit flag-o-matic eutils
DESCRIPTION="Standard informational utilities and process-handling tools"
HOMEPAGE="http://procps.sourceforge.net/"
SRC_URI="http://${PN}.sf.net/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ppc ~sparc mips alpha ~arm ~hppa ~amd64 ia64 ~ppc64 ~s390"
IUSE=""
RDEPEND=">=sys-libs/ncurses-5.2-r2"
src_unpack() {
unpack ${A}
cd ${S}
# Use the CFLAGS from /etc/make.conf.
replace-flags -O3 -O2
sed -i \
-e "s:-O2:${CFLAGS}:" \
-e "/^LDFLAGS/s:$: ${LDFLAGS}:" \
-e "/install/s: --strip : :" \
Makefile
# mips 2.4.23 headers (and 2.6.x) don't allow PAGE_SIZE to be defined in
# userspace anymore, so this patch instructs procps to get the
# value from sysconf().
use mips && epatch ${FILESDIR}/${PN}-mips-define-pagesize.patch
}
src_compile() {
emake || die
}
src_install() {
einstall DESTDIR="${D}"|| die
dodoc BUGS NEWS TODO pc/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"
}
|