|
Revision 10479, 1.0 KB
(checked in by jawil06, 3 years ago)
|
|
ossie-cf_0.8.1 recipe now works
|
| 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 omniorbpy boost libtool-cross" |
|---|
| 7 | |
|---|
| 8 | PR = "r0" |
|---|
| 9 | |
|---|
| 10 | SRC_URI = "svn://anon:ossiesdr@ossie.wireless.vt.edu/repos/ossie/ossiedev/tags/0.8.x/0.8.1/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_install_prepend () { |
|---|
| 23 | export STAGING_INCDIR=${STAGING_INCDIR} |
|---|
| 24 | export STAGING_LIBDIR=${STAGING_LIBDIR} |
|---|
| 25 | export PYTHONPATH=${D}/${PYTHON_SITEPACKAGES_DIR} |
|---|
| 26 | export BUILD_SYS=${BUILD_SYS} |
|---|
| 27 | export HOST_SYS=${HOST_SYS} |
|---|
| 28 | } |
|---|
| 29 | |
|---|
| 30 | do_stage () { |
|---|
| 31 | autotools_stage_all |
|---|
| 32 | } |
|---|
| 33 | |
|---|