blob: 16cf45a90e9ee26e9c12dd55c76df946e86bf82f (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/procps/procps-2.0.16.ebuild,v 1.2 2003/12/07 06:27:58 seemant Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Standard informational utilities and process-handling tools"
SRC_URI="http://tech9.net/rml/${PN}/packages/${PV}/${P}.tar.gz"
HOMEPAGE="http://tech9.net/rml/procps/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ppc sparc alpha hppa mips arm ia64"
RDEPEND=">=sys-libs/ncurses-5.2-r2"
DEPEND="${RDEPEND}
>=sys-devel/gettext-0.10.35"
src_unpack() {
unpack ${A}
cd ${S}
# Use the CFLAGS from /etc/make.conf.
# remove /etc/X11/applnk/Desktop/top.app from makefile
# mv Makefile Makefile.orig
# sed \
# -e "s:-O3:${CFLAGS}:" \
# -e 's/all: config/all: /' \
# -e "s:--strip::" \
# -e 's:$.DESKTOP.::' \
# Makefile.orig > Makefile
# WARNING! In case of a version bump, check the line below that
# removes a line from the Makefile file.
# cd ${S}/ps
# mv Makefile Makefile.orig
# sed \
# -e "s:-O2:${CFLAGS}:" \
# -e "s:/var/.*man/:${D}var/.*man/:" \
# -e "s:-lproc:-lproc -L${D}lib:" \
# Makefile.orig > Makefile
# cd ${S}/proc
# mv Makefile Makefile.orig
# sed \
# -e "s:-O2:${CFLAGS}:" \
# -e "s:--strip::" \
# Makefile.orig > Makefile
for file in $(find . -iname 'Makefile'); do
sed -i -e "s:-O[0-9]:${CFLAGS}:" $file
done
}
src_compile() {
dodir /lib
make SHLIBDIR="${D}lib" || die
}
src_install() {
dodir /usr/bin
dodir /sbin
dodir /usr/X11R6/bin
dodir /usr/share/man/man{1,5,8}
dodir /lib
dodir /bin
exeinto /lib
doexe proc/libproc.so.${PV}
dosym /lib/libproc.so.${PV} /lib/libproc.so
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"
}
|