diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-03-17 21:41:22 +0100 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-03-17 21:41:22 +0100 |
commit | c58cc7d3796dcee6e93885c835ed04cb566abeb2 (patch) | |
tree | 3eea4d4ef6a4ef79e0f4e025d7012c1a5cc38835 /meta-oe/recipes-support/htop | |
parent | eec6ab97f712e06eb52c9f7c99e19ffab3ce9d74 (diff) | |
download | meta-openembedded-contrib-c58cc7d3796dcee6e93885c835ed04cb566abeb2.tar.gz |
move layer into meta-oe in preparation for future splits
As per TSC decision
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-support/htop')
-rw-r--r-- | meta-oe/recipes-support/htop/htop/remove-proc-test.patch | 13 | ||||
-rw-r--r-- | meta-oe/recipes-support/htop/htop_0.9.bb | 19 |
2 files changed, 32 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/htop/htop/remove-proc-test.patch b/meta-oe/recipes-support/htop/htop/remove-proc-test.patch new file mode 100644 index 00000000000..3185fdd1f43 --- /dev/null +++ b/meta-oe/recipes-support/htop/htop/remove-proc-test.patch @@ -0,0 +1,13 @@ +--- htop-0.6.6/configure.ac 2007-05-21 13:06:15.000000000 -0500 ++++ htop-0.6.6-cross/configure.ac 2007-11-16 14:12:16.000000000 -0600 +@@ -58,8 +58,8 @@ + fi, + AC_DEFINE(PROCDIR, "/proc", [Path of proc filesystem])) + +-AC_CHECK_FILE($PROCDIR/stat,,AC_MSG_ERROR(Cannot find /proc/stat. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.)) +-AC_CHECK_FILE($PROCDIR/meminfo,,AC_MSG_ERROR(Cannot find /proc/meminfo. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.)) ++#AC_CHECK_FILE($PROCDIR/stat,,AC_MSG_ERROR(Cannot find /proc/stat. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.)) ++#AC_CHECK_FILE($PROCDIR/meminfo,,AC_MSG_ERROR(Cannot find /proc/meminfo. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.)) + + AC_CONFIG_FILES([Makefile]) + AC_OUTPUT diff --git a/meta-oe/recipes-support/htop/htop_0.9.bb b/meta-oe/recipes-support/htop/htop_0.9.bb new file mode 100644 index 00000000000..eb207aabe6b --- /dev/null +++ b/meta-oe/recipes-support/htop/htop_0.9.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "htop process monitor" +HOMEPAGE = "http://htop.sf.net" +SECTION = "console/utils" +PRIORITY = "optional" +LICENSE = "GPLv2" + +LIC_FILES_CHKSUM = "file://COPYING;md5=c312653532e8e669f30e5ec8bdc23be3" + +DEPENDS = "ncurses" +RDEPENDS_${PN} = "ncurses-terminfo" + +SRC_URI = "${SOURCEFORGE_MIRROR}/htop/htop-${PV}.tar.gz \ + file://remove-proc-test.patch" + +inherit autotools + +SRC_URI[md5sum] = "7c5507f35f363f3f40183a2ba3c561f8" +SRC_URI[sha256sum] = "4de65c38e1886bccd30ed692b30eb9bf195240680781bfe1eaf5faf84ee6fbfd" + |