summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/exmap-console/exmap-console.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/exmap-console/exmap-console.inc')
-rw-r--r--meta/recipes-devtools/exmap-console/exmap-console.inc59
1 files changed, 59 insertions, 0 deletions
diff --git a/meta/recipes-devtools/exmap-console/exmap-console.inc b/meta/recipes-devtools/exmap-console/exmap-console.inc
new file mode 100644
index 0000000000..efbd79fce1
--- /dev/null
+++ b/meta/recipes-devtools/exmap-console/exmap-console.inc
@@ -0,0 +1,59 @@
1DESCRIPTION = "Console based version of exmap, a memory usage analysis tool"
2HOMEPAGE = "http://projects.o-hand.com/exmap-console"
3SECTION = "devel"
4LICENSE = "GPL"
5DEPENDS = "virtual/kernel readline glib-2.0"
6
7SRC_URI = "http://projects.o-hand.com/sources/exmap-console/exmap-console-${PV}.tgz"
8
9TEMPPACKAGE_ARCH := "${PACKAGE_ARCH}"
10
11inherit module-base
12inherit autotools
13
14PACKAGE_ARCH = "${TEMPPACKAGE_ARCH}"
15
16PACKAGES =+ "exmap-server kernel-module-exmap"
17
18FILES_exmap-console = "${bindir}/exmap ${bindir}/exmapd"
19RDEPENDS_exmap-console += "kernel-module-exmap"
20
21FILES_exmap-server = "${bindir}/exmapserver"
22RDEPENDS_exmap-server += "kernel-module-exmap"
23
24FILES_kernel-module-exmap = "${base_libdir}"
25PACKAGE_ARCH_kernel-module-exmap = "${MACHINE_ARCH}"
26RDEPENDS_kernel-module-exmap += "update-modules kernel-image-${KERNEL_VERSION}"
27
28S = "${WORKDIR}/exmap-console-${PV}"
29
30export MODULE_PATH="${D}${base_libdir}/modules/${KERNEL_VERSION}"
31
32do_compile() {
33 cd ${S}/src
34 make
35
36 cd ${S}/kernel
37 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
38 oe_runmake KERNEL_PATH=${STAGING_KERNEL_DIR} \
39 KERNEL_SRC=${STAGING_KERNEL_DIR} \
40 KERNEL_VERSION=${KERNEL_VERSION} \
41 CC="${KERNEL_CC}" LD="${KERNEL_LD}" \
42 ${MAKE_TARGETS}
43}
44
45do_install() {
46 oe_runmake 'DESTDIR=${D}' 'DEPMOD=/bin/true' install
47}
48
49pkg_postinst_append_kernel-module-exmap () {
50 if [ -n "$D" ]; then
51 exit 1
52 fi
53 depmod -a
54 update-modules || true
55}
56
57pkg_postrm_append_kernel-module-exmap () {
58 update-modules || true
59}