mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
Remove patches that are no longer needed. Upstream development has moved to GitHub and homepage has moved. License remains GPLv2, but file changed due to whitespace removal. The --enable-proc setting was removed, so remove the PACKAGECONFIG. The config.h file does not exist in the repo, so it's no longer necessary to remove it before configure. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
1.1 KiB
BlitzBasic
32 lines
1.1 KiB
BlitzBasic
SUMMARY = "Interactive process viewer"
|
|
HOMEPAGE = "https://htop.dev"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4099d367cd5e59b6d4fc1ee33accb891"
|
|
|
|
DEPENDS = "ncurses"
|
|
|
|
SRC_URI = "git://github.com/htop-dev/htop.git \
|
|
file://0001-Use-pkg-config.patch \
|
|
"
|
|
SRCREV = "dace850fa6e27b5626115b366059258cfe4d60c9"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
PACKAGECONFIG ??= "cgroup \
|
|
taskstats \
|
|
unicode \
|
|
linux-affinity \
|
|
delayacct"
|
|
PACKAGECONFIG[openvz] = "--enable-openvz,--disable-openvz"
|
|
PACKAGECONFIG[cgroup] = "--enable-cgroup,--disable-cgroup"
|
|
PACKAGECONFIG[vserver] = "--enable-vserver,--disable-vserver"
|
|
PACKAGECONFIG[taskstats] = "--enable-taskstats,--disable-taskstats"
|
|
PACKAGECONFIG[unicode] = "--enable-unicode,--disable-unicode"
|
|
PACKAGECONFIG[linux-affinity] = "--enable-linux-affinity,--disable-linux-affinity"
|
|
PACKAGECONFIG[hwloc] = "--enable-hwloc,--disable-hwloc,hwloc"
|
|
PACKAGECONFIG[setuid] = "--enable-setuid,--disable-setuid"
|
|
PACKAGECONFIG[delayacct] = "--enable-delayacct,--disable-delayacct,libnl"
|