summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorTomas Frydrych <tf@openedhand.com>2007-01-04 13:21:47 +0000
committerTomas Frydrych <tf@openedhand.com>2007-01-04 13:21:47 +0000
commit30daacb76f4fc4a297c98a53e2971698685a8d39 (patch)
tree17930d198ca091560d25ae7f112b347fd70c4816 /meta
parent09b777e81a72fbc0873d0bb18dacfcef13c172b3 (diff)
downloadpoky-30daacb76f4fc4a297c98a53e2971698685a8d39.tar.gz
splitexmap into exmap-console, exmap-server and kernel-module-exmap packages
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1115 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r--meta/packages/exmap-console/exmap-console_svn.bb27
1 files changed, 24 insertions, 3 deletions
diff --git a/meta/packages/exmap-console/exmap-console_svn.bb b/meta/packages/exmap-console/exmap-console_svn.bb
index 0243f990dd..9773164fdf 100644
--- a/meta/packages/exmap-console/exmap-console_svn.bb
+++ b/meta/packages/exmap-console/exmap-console_svn.bb
@@ -2,8 +2,16 @@ DESCRIPTION = "console-based exmap"
2HOMEPAGE = "http://www.o-hand.com" 2HOMEPAGE = "http://www.o-hand.com"
3SECTION = "devel" 3SECTION = "devel"
4LICENSE = "GPL" 4LICENSE = "GPL"
5PR = "r7" 5PR = "r8"
6PV = "0.3.1+svn${SRCDATE}" 6SRCDATE=20070105
7
8# HACK -- I want the kernel module version label to include both the
9# exmap pacakge version and the kernel version, but it is not possible
10# to use ${PV} in the definition of PV_kernel-module-exmap (complains
11# about recursion, hence $MYPV
12
13PV = "0.4+svn${SRCDATE}"
14MYPV = "0.4+svn${SRCDATE}"
7 15
8SRC_URI = \ 16SRC_URI = \
9 "svn://svn.o-hand.com/repos/misc/trunk;module=exmap-console;proto=http" 17 "svn://svn.o-hand.com/repos/misc/trunk;module=exmap-console;proto=http"
@@ -11,6 +19,20 @@ SRC_URI = \
11inherit module-base 19inherit module-base
12inherit autotools 20inherit autotools
13 21
22PACKAGES += "exmap-server kernel-module-exmap"
23
24FILES_${PN}= "${sbindir}"
25PACKAGE_ARCH_exmap-console = "${TARGET_ARCH}"
26RDEPENDS_exmap-console = "kernel-module-exmap"
27
28FILES_exmap-server = "${bindir}"
29PACKAGE_ARCH_exmap-server = "${TARGET_ARCH}"
30RDEPENDS_exmap-server = "kernel-module-exmap"
31
32FILES_kernel-module-exmap = "${base_libdir}"
33PACKAGE_ARCH_kernel-module-exmap = "${MACHINE_ARCH}"
34PV_kernel-module-exmap = "${MYPV}-${KERNEL_VERSION}"
35
14S = "${WORKDIR}/exmap-console" 36S = "${WORKDIR}/exmap-console"
15 37
16export MODULE_PATH="${D}${base_libdir}/modules/${KERNEL_VERSION}" 38export MODULE_PATH="${D}${base_libdir}/modules/${KERNEL_VERSION}"
@@ -28,4 +50,3 @@ do_compile() {
28 ${MAKE_TARGETS} 50 ${MAKE_TARGETS}
29} 51}
30 52
31FILES_${PN}="${sbindir} ${base_libdir}"