aboutsummaryrefslogtreecommitdiffstats
path: root/packages/omniorb/omniorb_4.0.5.bb
blob: ea9c24f47678bff5165f45e87afa978f8f342243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
PR = "r0"
DESCRIPTION = "OmniORB High Performance ORB"
SECTION = "devel"
PRIORITY = "optional"
LICENSE = "LGPL"

DEPENDS = omniorb-native

SRC_URI = "${SOURCEFORGE_MIRROR}/omniorb/omniORB-${PV}.tar.gz \
file://omniORB-cross.patch;patch=1 \
file://omniORB_embedded_appl.patch;patch=1"

S = "${WORKDIR}/omniORB-${PV}"

inherit autotools pkgconfig

#do_configure () {
#	oe_runconf
#}

do_compile () {
	export EmbeddedSystem=1
	export TOOLBINDIR=${STAGING_BINDIR}
	oe_runmake
}

do_stage () {
	export EmbeddedSystem=1
	make DESTDIR=${STAGING_DIR}/${TARGET_SYS} install
}

do_install () {
	export EmbeddedSystem=1
	make DESTDIR=${D} install
}