root/ossiedev/branches/jawil06/recipes/ossie-system/ossie-cf_0.8.1.bb @ 10737

Revision 10737, 1.1 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 
1DESCRIPTION = "OSSIE Core Framework"
2HOMEPAGE = "http://ossie.wireless.vt.edu/"
3SECTION =  "libs"
4PRIORITY = "optional"
5LICENSE = "LGPL"
6DEPENDS = "omniorb omniorbpy boost libtool-cross"
7
8PR = "r1"
9
10SRC_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"
11S = "${WORKDIR}/ossie"
12
13inherit autotools pkgconfig
14
15EXTRA_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.
18do_configure_append () {
19        rm config.log
20}
21
22do_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        export BUILD_SYS=${BUILD_SYS}
29        export HOST_SYS=${HOST_SYS}
30}
31
32do_stage () {
33        autotools_stage_all
34}
35
Note: See TracBrowser for help on using the browser.