diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:11 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-01 19:09:57 +0100 |
commit | d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612 (patch) | |
tree | f36fe3008f36ff75cbdd31b630f8f13f1f205ebb /meta/packages/exmap-console/exmap-console.inc | |
parent | caab7fc509bf27706ff3248689f6afd04225cfda (diff) | |
download | poky-d62ee7eaf2ba025c3f64b2d4e10dc7cec4637612.tar.gz |
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/exmap-console/exmap-console.inc')
-rw-r--r-- | meta/packages/exmap-console/exmap-console.inc | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/meta/packages/exmap-console/exmap-console.inc b/meta/packages/exmap-console/exmap-console.inc deleted file mode 100644 index efbd79fce1..0000000000 --- a/meta/packages/exmap-console/exmap-console.inc +++ /dev/null | |||
@@ -1,59 +0,0 @@ | |||
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 | } | ||