|
Revision 10365, 0.8 KB
(checked in by jawil06, 3 years ago)
|
|
Updating bitbake recipes.
|
| Line | |
|---|
| 1 | DESCRIPTION = "OSSIE Core Framework" |
|---|
| 2 | HOMEPAGE = "http://ossie.wireless.vt.edu/" |
|---|
| 3 | SECTION = "libs" |
|---|
| 4 | PRIORITY = "optional" |
|---|
| 5 | LICENSE = "LGPL" |
|---|
| 6 | DEPENDS = "omniorb boost libtool-cross" |
|---|
| 7 | |
|---|
| 8 | PR = "r0" |
|---|
| 9 | |
|---|
| 10 | SRC_URI = "svn://ossie.wireless.vt.edu/repos/ossie/ossiedev/branches/jawil06/ossie-oe/system/;module=ossie;rev=HEAD;proto=https" |
|---|
| 11 | S = "${WORKDIR}/ossie" |
|---|
| 12 | |
|---|
| 13 | inherit autotools pkgconfig |
|---|
| 14 | |
|---|
| 15 | EXTRA_OECONF = "--with-omniorb=${STAGING_BINDIR}/.. IDL=${STAGING_BINDIR_NATIVE}/omniidl --libdir=/usr/lib --includedir=/usr/include --with-boost --with-boost-filesystem=boost_filesystem-mt" |
|---|
| 16 | |
|---|
| 17 | # This is a hack to ignore the output of config.log which halts compilation due to errors with host files. This is a work-around, NOT a fix. |
|---|
| 18 | do_configure_append () { |
|---|
| 19 | rm config.log |
|---|
| 20 | } |
|---|
| 21 | |
|---|
| 22 | do_stage () { |
|---|
| 23 | autotools_stage_all |
|---|
| 24 | } |
|---|
| 25 | |
|---|