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

Revision 10479, 1.0 KB (checked in by jawil06, 3 years ago)

ossie-cf_0.8.1 recipe now works

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 = "r0"
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}
29
30do_stage () {
31        autotools_stage_all
32}
33
Note: See TracBrowser for help on using the browser.