|
Revision 10737, 1.0 KB
(checked in by jawil06, 2 years ago)
|
|
Shouldn't have 'cleaned up', those lines were necessary for python. Should have tested before committing.
|
| Line | |
|---|
| 1 | DESCRIPTION = "OSSIE Standard port interfaces" |
|---|
| 2 | SECTION = "libs" |
|---|
| 3 | PRIORITY = "optional" |
|---|
| 4 | LICENSE = "LGPL" |
|---|
| 5 | |
|---|
| 6 | PR = "r0" |
|---|
| 7 | |
|---|
| 8 | DEPENDS = "ossie-cf" |
|---|
| 9 | |
|---|
| 10 | S = "${WORKDIR}/standardInterfaces" |
|---|
| 11 | |
|---|
| 12 | SRC_URI = "svn://anon:ossiesdr@ossie.wireless.vt.edu/repos/ossie/ossiedev/tags/0.8.x/0.8.1/system/;module=standardInterfaces;rev=HEAD;proto=https \ |
|---|
| 13 | file://ossie-standardinterfaces-0.8.1.patch \ |
|---|
| 14 | file://ossie-standardinterfaces-0.8.1_idl-makefile.patch" |
|---|
| 15 | |
|---|
| 16 | inherit autotools pkgconfig |
|---|
| 17 | |
|---|
| 18 | EXTRA_OECONF = "--with-omniorb=${STAGING_BINDIR}/.. IDL=${STAGING_BINDIR_NATIVE}/omniidl OSSIE_CFLAGS=-I${STAGING_DIR_TARGET}/usr/include --libdir=/usr/lib --includedir=/usr/include --with-boost --with-boost-filesystem" |
|---|
| 19 | |
|---|
| 20 | do_install_prepend () { |
|---|
| 21 | export STAGING_INCDIR=${STAGING_INCDIR} |
|---|
| 22 | export STAGING_LIBDIR=${STAGING_LIBDIR} |
|---|
| 23 | export PYTHONPATH=${D}/${PYTHON_SITEPACKAGES_DIR} |
|---|
| 24 | export BUILD_SYS=${BUILD_SYS} |
|---|
| 25 | export HOST_SYS=${HOST_SYS} |
|---|
| 26 | export BUILD_SYS=${BUILD_SYS} |
|---|
| 27 | export HOST_SYS=${HOST_SYS} |
|---|
| 28 | } |
|---|
| 29 | |
|---|
| 30 | do_stage () { |
|---|
| 31 | autotools_stage_all |
|---|
| 32 | } |
|---|
| 33 | |
|---|