summaryrefslogtreecommitdiff
path: root/packages/procps/procps_3.2.1.bb
diff options
context:
space:
mode:
authorHolger Schurig <schurig@mn-solutions.de>2005-04-04 10:21:26 +0000
committerHolger Schurig <schurig@mn-solutions.de>2005-04-04 10:21:26 +0000
commit5fa979f5ade9d31d5df4d81b9105ebd4dc75cc9f (patch)
treecd5ac590dd87e0e2c2a22fd7de1e6d6c9476e28f /packages/procps/procps_3.2.1.bb
parent7d1d016d9f60f3d90933c1c207511fc36a53c126 (diff)
A couple of packages (util-linux and procps) expect the PAGE_SIZE define from
<asm/page.h> to be a constant (e.g. using it to set the size of a static array) which no longer works since the latest glibc has changed this to use the "getpagesize()" function. There may be others, but these are the two that failed for me. BKrev: 42511526QrKR819dMIxBogIdn-8lIA
Diffstat (limited to 'packages/procps/procps_3.2.1.bb')
-rw-r--r--packages/procps/procps_3.2.1.bb21
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/procps/procps_3.2.1.bb b/packages/procps/procps_3.2.1.bb
index e69de29bb2..4796bbf7bf 100644
--- a/packages/procps/procps_3.2.1.bb
+++ b/packages/procps/procps_3.2.1.bb
@@ -0,0 +1,21 @@
+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 = "r1"
+
+SRC_URI = "http://procps.sourceforge.net/procps-${PV}.tar.gz \
+ file://install.patch;patch=1 \
+ file://pagesz-not-constant.patch;patch=1"
+
+inherit autotools
+
+EXTRA_OEMAKE = "CFLAGS=-I${STAGING_INCDIR} \
+ LDFLAGS=-L${STAGING_LIBDIR} -Wl,--rpath-link,${STAGING_LIBDIR} \
+ CURSES=-lncurses \
+ install='install -D' \
+ ldconfig=echo"