diff options
Diffstat (limited to 'meta/recipes-devtools/exmap-console/exmap-console.inc')
| -rw-r--r-- | meta/recipes-devtools/exmap-console/exmap-console.inc | 59 |
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 @@ | |||
| 1 | DESCRIPTION = "Console based version of exmap, a memory usage analysis tool" | ||
| 2 | HOMEPAGE = "http://projects.o-hand.com/exmap-console" | ||
| 3 | SECTION = "devel" | ||
| 4 | LICENSE = "GPL" | ||
| 5 | DEPENDS = "virtual/kernel readline glib-2.0" | ||
| 6 | |||
| 7 | SRC_URI = "http://projects.o-hand.com/sources/exmap-console/exmap-console-${PV}.tgz" | ||
| 8 | |||
| 9 | TEMPPACKAGE_ARCH := "${PACKAGE_ARCH}" | ||
| 10 | |||
| 11 | inherit module-base | ||
| 12 | inherit autotools | ||
| 13 | |||
| 14 | PACKAGE_ARCH = "${TEMPPACKAGE_ARCH}" | ||
| 15 | |||
| 16 | PACKAGES =+ "exmap-server kernel-module-exmap" | ||
| 17 | |||
| 18 | FILES_exmap-console = "${bindir}/exmap ${bindir}/exmapd" | ||
| 19 | RDEPENDS_exmap-console += "kernel-module-exmap" | ||
| 20 | |||
| 21 | FILES_exmap-server = "${bindir}/exmapserver" | ||
| 22 | RDEPENDS_exmap-server += "kernel-module-exmap" | ||
| 23 | |||
| 24 | FILES_kernel-module-exmap = "${base_libdir}" | ||
| 25 | PACKAGE_ARCH_kernel-module-exmap = "${MACHINE_ARCH}" | ||
| 26 | RDEPENDS_kernel-module-exmap += "update-modules kernel-image-${KERNEL_VERSION}" | ||
| 27 | |||
| 28 | S = "${WORKDIR}/exmap-console-${PV}" | ||
| 29 | |||
| 30 | export MODULE_PATH="${D}${base_libdir}/modules/${KERNEL_VERSION}" | ||
| 31 | |||
| 32 | do_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 | |||
| 45 | do_install() { | ||
| 46 | oe_runmake 'DESTDIR=${D}' 'DEPMOD=/bin/true' install | ||
| 47 | } | ||
| 48 | |||
| 49 | pkg_postinst_append_kernel-module-exmap () { | ||
| 50 | if [ -n "$D" ]; then | ||
| 51 | exit 1 | ||
| 52 | fi | ||
| 53 | depmod -a | ||
| 54 | update-modules || true | ||
| 55 | } | ||
| 56 | |||
| 57 | pkg_postrm_append_kernel-module-exmap () { | ||
| 58 | update-modules || true | ||
| 59 | } | ||
