blob: 5101874a5bcef752ffbb11cdee1f421214bd5c50 (
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
|
LICENSE = "GPL"
DESCRIPTION = "Procps is the package that has a bunch \
of small useful utilities that give information \
about processes using the /proc filesystem. The package \
includes the programs ps, top, vmstat, w, kill, and skill."
SECTION = "base"
PRIORITY = "optional"
DEPENDS = "ncurses"
PR = "r5"
SRC_URI = "http://procps.sourceforge.net/procps-${PV}.tar.gz \
file://install.patch;patch=1 \
file://procmodule.patch;patch=1 \
file://psmodule.patch;patch=1"
inherit autotools
FILES = "${bindir}/top.${PN} ${base_bindir}/ps.${PN} ${bindir}/uptime.${PN} ${base_bindir}/kill.${PN} \
${bindir}/free.${PN} ${bindir}/w ${bindir}/watch ${bindir}/pgrep ${bindir}/pmap ${bindir}/pwdx \
${bindir}/snice ${bindir}/vmstat ${bindir}/slabtop ${bindir}/pkill ${bindir}/skill ${bindir}/tload \
${base_sbindir}/sysctl.${PN}"
EXTRA_OEMAKE = "CFLAGS=-I${STAGING_INCDIR} \
CPPFLAGS=-I${STAGING_INCDIR} \
LDFLAGS=-L${STAGING_LIBDIR} -Wl,--rpath-link,${STAGING_LIBDIR} \
CURSES=-lncurses \
install='install -D' \
ldconfig=echo"
do_install_append () {
mv ${D}${bindir}/uptime ${D}${bindir}/uptime.${PN}
mv ${D}${bindir}/top ${D}${bindir}/top.${PN}
mv ${D}${base_bindir}/kill ${D}${base_bindir}/kill.${PN}
mv ${D}${base_bindir}/ps ${D}${base_bindir}/ps.${PN}
mv ${D}${bindir}/free ${D}${bindir}/free.${PN}
mv ${D}${base_sbindir}/sysctl ${D}${base_sbindir}/sysctl.${PN}
}
pkg_postinst() {
update-alternatives --install ${bindir}/top top top.${PN} 90
update-alternatives --install ${bindir}/uptime uptime uptime.${PN} 90
update-alternatives --install ${base_bindir}/ps ps ps.${PN} 90
update-alternatives --install ${base_bindir}/kill kill kill.${PN} 90
update-alternatives --install ${bindir}/free free free.${PN} 90
update-alternatives --install ${base_sbindir}/sysctl sysctl sysctl.${PN} 90
}
pkg_postrm() {
update-alternatives --remove top top.${PN}
update-alternatives --remove ps ps.${PN}
update-alternatives --remove uptime uptime.${PN}
update-alternatives --remove kill kill.${PN}
update-alternatives --remove free free.${PN}
update-alternatives --remove sysctl sysctl.${PN}
}
|