Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "Utilities for managing processes on your system" |
| 2 | DESCRIPTION = "The psmisc package contains utilities for managing processes on your \ |
| 3 | system: pstree, killall and fuser. The pstree command displays a tree \ |
| 4 | structure of all of the running processes on your system. The killall \ |
| 5 | command sends a specified signal (SIGTERM if nothing is specified) to \ |
| 6 | processes identified by name. The fuser command identifies the PIDs \ |
| 7 | of processes that are using specified files or filesystems." |
| 8 | SECTION = "base" |
| 9 | DEPENDS = "ncurses virtual/libintl" |
| 10 | LICENSE = "GPLv2" |
| 11 | |
| 12 | SRC_URI = "${SOURCEFORGE_MIRROR}/psmisc/psmisc-${PV}.tar.gz" |
| 13 | |
| 14 | S = "${WORKDIR}/psmisc-${PV}" |
| 15 | |
| 16 | inherit autotools gettext |
| 17 | |
| 18 | ALLOW_EMPTY_${PN} = "1" |
| 19 | |
| 20 | PACKAGES =+ "fuser fuser-doc killall killall-doc pstree pstree-doc" |
| 21 | PACKAGES += "psmisc-extras" |
| 22 | |
| 23 | FILES_${PN} = "" |
| 24 | RDEPENDS_${PN} = "fuser killall pstree" |
| 25 | |
| 26 | FILES_fuser = "${bindir}/fuser.${BPN}" |
| 27 | FILES_fuser-doc = "${mandir}/man1/fuser*" |
| 28 | |
| 29 | FILES_killall = "${bindir}/killall.${BPN}" |
| 30 | FILES_killall-doc = "${mandir}/man1/killall*" |
| 31 | |
| 32 | FILES_pstree = "${bindir}/pstree" |
| 33 | FILES_pstree-doc = "${mandir}/man1/pstree*" |
| 34 | |
| 35 | FILES_psmisc-extras = "${bindir}" |
| 36 | FILES_psmisc-extras-doc = "${mandir}" |
| 37 | |
| 38 | inherit update-alternatives |
| 39 | |
| 40 | ALTERNATIVE_PRIORITY = "90" |
| 41 | |
| 42 | ALTERNATIVE_killall = "killall" |
| 43 | |
| 44 | ALTERNATIVE_fuser = "fuser" |