blob: 9592453f2cce95494cfdad40b88130e13c0872ba (
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
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/procps/procps-3.2.5.ebuild,v 1.1 2005/03/03 16:53:14 ciaranm Exp $
inherit flag-o-matic eutils toolchain-funcs
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="~alpha ~amd64 ~arm ~hppa ~ia64 -mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE=""
RDEPEND=">=sys-libs/ncurses-5.2-r2"
src_unpack() {
unpack ${A}
cd ${S}
# Fix terminal breakage when sorting first column in top #80296
epatch "${FILESDIR}"/${PV}-top-sort.patch
# Clean up the makefile
# - we do stripping ourselves
# - punt fugly gcc flags
sed -i \
-e '/install/s: --strip : :' \
-e '/ALL_CFLAGS += $(call check_gcc,-fweb,)/d' \
-e '/ALL_CFLAGS += $(call check_gcc,-Wstrict-aliasing=2,)/s,=2,,' \
Makefile || die "sed Makefile"
use ppc && sed -i -e 's:-m64::g' 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() {
replace-flags -O3 -O2
emake \
lib64="$(get_libdir)" \
CC="$(tc-getCC)" \
CPPFLAGS="${CPPFLAGS}" \
CFLAGS="${CFLAGS}" \
LDFLAGS="${LDFLAGS}" \
|| die "make failed"
}
src_install() {
make install ldconfig="true" DESTDIR="${D}" || die "install failed"
insinto /usr/include/proc
doins proc/*.h || die "doins include"
dodoc sysctl.conf BUGS NEWS TODO ps/HACKING
}
pkg_postinst() {
einfo "NOTE: With NPTL \"ps\" and \"top\" no longer"
einfo "show threads. You can use any of: -m m -L -T H"
einfo "in ps or the H key in top to show them"
}
|