diff options
author | Philip Balister <philip@balister.org> | 2006-11-20 21:54:23 +0000 |
---|---|---|
committer | Philip Balister <philip@balister.org> | 2006-11-20 21:54:23 +0000 |
commit | 7f26c89b330705cbfb428f89df94c7879667af72 (patch) | |
tree | 9974358f9ae343b8e7e744fd7629be32302e24d7 /packages/omniorb/omniorb_4.0.7.bb | |
parent | 5229146f37c75353e7ee976db3113d743ac562d3 (diff) |
omniorb, omniorb-native : Fix bb file syntax and style.
Diffstat (limited to 'packages/omniorb/omniorb_4.0.7.bb')
-rw-r--r-- | packages/omniorb/omniorb_4.0.7.bb | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/packages/omniorb/omniorb_4.0.7.bb b/packages/omniorb/omniorb_4.0.7.bb index d9094926b2..d475b22791 100644 --- a/packages/omniorb/omniorb_4.0.7.bb +++ b/packages/omniorb/omniorb_4.0.7.bb @@ -1,10 +1,9 @@ -PR = "r0" DESCRIPTION = "OmniORB High Performance ORB" SECTION = "devel" PRIORITY = "optional" LICENSE = "LGPL" - DEPENDS = "omniorb-native" +PR = "r0" SRC_URI = "${SOURCEFORGE_MIRROR}/omniorb/omniORB-${PV}.tar.gz \ file://omniORB.cfg \ @@ -19,20 +18,18 @@ S = "${WORKDIR}/omniORB-${PV}" inherit autotools pkgconfig do_compile () { - export EmbeddedSystem=1 - export TOOLBINDIR=${STAGING_BINDIR} - oe_runmake + export EmbeddedSystem=1 + export TOOLBINDIR=${STAGING_BINDIR} + oe_runmake } - -do_stage () { - export EmbeddedSystem=1 - autotools_stage_all -} - do_install () { - export EmbeddedSystem=1 - make DESTDIR=${D} install - install -d ${D}${sysconfdir} - install -m 0644 ${WORKDIR}/omniORB.cfg ${D}${sysconfdir} - install -d ${D}${localstatedir}/omninames + export EmbeddedSystem=1 + make DESTDIR=${D} install + install -d ${D}${sysconfdir} + install -m 0644 ${WORKDIR}/omniORB.cfg ${D}${sysconfdir} + install -d ${D}${localstatedir}/omninames +} +do_stage () { + export EmbeddedSystem=1 + autotools_stage_all } |