summaryrefslogtreecommitdiff
path: root/meta/packages/exmap-console/exmap-console.inc
diff options
context:
space:
mode:
authorTomas Frydrych <tf@openedhand.com>2006-12-15 13:59:58 +0000
committerTomas Frydrych <tf@openedhand.com>2006-12-15 13:59:58 +0000
commit8b1ea72b569ed2a46db13c141a2720d7a5f3410d (patch)
tree0aa52f584e08444a15847096891e13e0bfc41818 /meta/packages/exmap-console/exmap-console.inc
parent6b52f40b6fffc90e689db9e52be53c69bba37d9c (diff)
downloadopenembedded-core-8b1ea72b569ed2a46db13c141a2720d7a5f3410d.tar.gz
openembedded-core-8b1ea72b569ed2a46db13c141a2720d7a5f3410d.tar.bz2
openembedded-core-8b1ea72b569ed2a46db13c141a2720d7a5f3410d.tar.xz
openembedded-core-8b1ea72b569ed2a46db13c141a2720d7a5f3410d.zip
update to 0.3.1
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1042 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/exmap-console/exmap-console.inc')
-rw-r--r--meta/packages/exmap-console/exmap-console.inc31
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/packages/exmap-console/exmap-console.inc b/meta/packages/exmap-console/exmap-console.inc
new file mode 100644
index 000000000..37f226858
--- /dev/null
+++ b/meta/packages/exmap-console/exmap-console.inc
@@ -0,0 +1,31 @@
+DESCRIPTION = "console-based exmap"
+HOMEPAGE = "http://www.o-hand.com"
+SECTION = "devel"
+LICENSE = "GPL"
+
+SRCDATE="20061111"
+
+SRC_URI = \
+ "http://projects.o-hand.com/sources/exmap-console/exmap-console-${PV}.tgz"
+
+inherit module-base
+inherit autotools
+
+S = "${WORKDIR}/exmap-console-${PV}"
+
+export MODULE_PATH="${D}${base_libdir}/modules/${KERNEL_VERSION}"
+
+do_compile() {
+ cd ${S}/src
+ make
+
+ cd ${S}/kernel
+ unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
+ oe_runmake KERNEL_PATH=${STAGING_KERNEL_DIR} \
+ KERNEL_SRC=${STAGING_KERNEL_DIR} \
+ KERNEL_VERSION=${KERNEL_VERSION} \
+ CC="${KERNEL_CC}" LD="${KERNEL_LD}" \
+ ${MAKE_TARGETS}
+}
+
+FILES_${PN}="${sbindir} ${base_libdir}"