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/recipes-devtools/tcf-agent/tcf-agent_svn.bb | |
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/recipes-devtools/tcf-agent/tcf-agent_svn.bb')
-rw-r--r-- | meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb new file mode 100644 index 0000000000..b4c70ec8b8 --- /dev/null +++ b/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb | |||
@@ -0,0 +1,36 @@ | |||
1 | DESCRIPTION = "Target Communication Framework" | ||
2 | HOMEPAGE = "http://dsdp.eclipse.org/dsdp/tm/" | ||
3 | BUGTRACKER = "https://bugs.eclipse.org/bugs/" | ||
4 | |||
5 | LICENSE = "EPLv1.0 | EDLv1.0" | ||
6 | LIC_FILES_CHKSUM = "file://../epl-v10.html;md5=7aa4215a330a0a4f6a1cbf8da1a0879f \ | ||
7 | file://../agent/edl-v10.html;md5=522a390a83dc186513f0500543ad3679" | ||
8 | |||
9 | PV = "0.3.0+svnr${SRCREV}" | ||
10 | PR = "r0" | ||
11 | |||
12 | SRC_URI = "svn://dev.eclipse.org/svnroot/dsdp/org.eclipse.tm.tcf/;module=tags/0.3.0/;proto=http \ | ||
13 | file://terminals_agent.patch \ | ||
14 | file://fix_tcf-agent.init.patch" | ||
15 | |||
16 | S = "${WORKDIR}/tags/0.3.0/tcf-agent" | ||
17 | |||
18 | inherit update-rc.d | ||
19 | |||
20 | INITSCRIPT_NAME = "tcf-agent" | ||
21 | INITSCRIPT_PARAMS = "start 999 3 5 . stop 20 0 1 2 6 ." | ||
22 | |||
23 | # mangling needed for make | ||
24 | MAKE_ARCH = `echo ${TARGET_ARCH} | sed s,i.86,i686,` | ||
25 | MAKE_OS = `echo ${TARGET_OS} | sed s,linux,GNU/Linux,` | ||
26 | |||
27 | EXTRA_OEMAKE = "MACHINE=${MAKE_ARCH} OPSYS=${MAKE_OS} 'CC=${CC}' 'AR=${AR}'" | ||
28 | |||
29 | do_compile() { | ||
30 | oe_runmake | ||
31 | } | ||
32 | |||
33 | do_install() { | ||
34 | oe_runmake install INSTALLROOT=${D} | ||
35 | } | ||
36 | |||