summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Frydrych <tf@openedhand.com>2006-12-19 13:01:25 +0000
committerTomas Frydrych <tf@openedhand.com>2006-12-19 13:01:25 +0000
commit44e5910db472a5963bd0e837c6ec7dae51b5ea28 (patch)
tree1aac1d208323fe39104891884db963ec745b63f8
parent81aad853109e83e9113e4a1616b73714055ec1a9 (diff)
downloadpoky-44e5910db472a5963bd0e837c6ec7dae51b5ea28.tar.gz
svn bb file
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1047 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r--meta/packages/exmap-console/exmap-console_svn.bb33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/packages/exmap-console/exmap-console_svn.bb b/meta/packages/exmap-console/exmap-console_svn.bb
new file mode 100644
index 0000000000..05fe479edd
--- /dev/null
+++ b/meta/packages/exmap-console/exmap-console_svn.bb
@@ -0,0 +1,33 @@
1DESCRIPTION = "console-based exmap"
2HOMEPAGE = "http://www.o-hand.com"
3SECTION = "devel"
4LICENSE = "GPL"
5PR = "r7"
6PV = "0.0+svn${SRCDATE}"
7
8SRCDATE="20061220"
9
10SRC_URI = \
11 "svn://svn.o-hand.com/repos/misc/trunk;module=exmap-console;proto=http"
12
13inherit module-base
14inherit autotools
15
16S = "${WORKDIR}/exmap-console"
17
18export MODULE_PATH="${D}${base_libdir}/modules/${KERNEL_VERSION}"
19
20do_compile() {
21 cd ${S}/src
22 make
23
24 cd ${S}/kernel
25 unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
26 oe_runmake KERNEL_PATH=${STAGING_KERNEL_DIR} \
27 KERNEL_SRC=${STAGING_KERNEL_DIR} \
28 KERNEL_VERSION=${KERNEL_VERSION} \
29 CC="${KERNEL_CC}" LD="${KERNEL_LD}" \
30 ${MAKE_TARGETS}
31}
32
33FILES_${PN}="${sbindir} ${base_libdir}"