blob: 594a10cf2224de08905b5cf76b4d152c7a4bd6f9 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "Utilities for managing processes on your system"
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002HOMEPAGE = "http://psmisc.sf.net/"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05003DESCRIPTION = "The psmisc package contains utilities for managing processes on your \
4system: pstree, killall and fuser. The pstree command displays a tree \
5structure of all of the running processes on your system. The killall \
6command sends a specified signal (SIGTERM if nothing is specified) to \
7processes identified by name. The fuser command identifies the PIDs \
8of processes that are using specified files or filesystems."
9SECTION = "base"
Brad Bishop96ff1982019-08-19 13:50:42 -040010DEPENDS = "ncurses virtual/libintl gettext-native"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011LICENSE = "GPLv2"
12
13SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz"
14
15S = "${WORKDIR}/psmisc-${PV}"
16
17inherit autotools gettext
18
Brad Bishop316dfdd2018-06-25 12:45:53 -040019# Upstream has a custom autogen.sh which invokes po/update-potfiles as they
20# don't ship a po/POTFILES.in (which is silly). Without that file gettext
21# doesn't believe po/ is a gettext directory and won't generate po/Makefile.
22EXTRA_AUTORECONF_remove = "--exclude=autopoint"
23do_configure_prepend() {
24 ( cd ${S} && po/update-potfiles )
25}
26
27
Brad Bishop6e60e8b2018-02-01 10:27:11 -050028PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
Patrick Williamsc0f7c042017-02-23 20:41:17 -060029PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
30
Patrick Williamsc124f4f2015-09-15 14:41:29 -050031ALLOW_EMPTY_${PN} = "1"
32
33PACKAGES =+ "fuser fuser-doc killall killall-doc pstree pstree-doc"
34PACKAGES += "psmisc-extras"
35
36FILES_${PN} = ""
37RDEPENDS_${PN} = "fuser killall pstree"
38
39FILES_fuser = "${bindir}/fuser.${BPN}"
40FILES_fuser-doc = "${mandir}/man1/fuser*"
41
42FILES_killall = "${bindir}/killall.${BPN}"
43FILES_killall-doc = "${mandir}/man1/killall*"
44
45FILES_pstree = "${bindir}/pstree"
46FILES_pstree-doc = "${mandir}/man1/pstree*"
47
48FILES_psmisc-extras = "${bindir}"
49FILES_psmisc-extras-doc = "${mandir}"
50
51inherit update-alternatives
52
53ALTERNATIVE_PRIORITY = "90"
54
55ALTERNATIVE_killall = "killall"
56
57ALTERNATIVE_fuser = "fuser"