diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-02-13 01:19:55 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-02-13 01:19:55 +0000 |
commit | 9e22b40c91dea26e68c7dc3eed65ca8a37ded848 (patch) | |
tree | f6ff24ed6915cc55c50eaee6237fbbd8a35bc36e /packages/rxtx | |
parent | b71755f5063c33c58a77a088fed19cf7e6f6bfeb (diff) |
rxtx: Fixes.
- added custom compilation step
- corrected build dependencies
Diffstat (limited to 'packages/rxtx')
-rw-r--r-- | packages/rxtx/rxtx_2.1-7r2.bb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/rxtx/rxtx_2.1-7r2.bb b/packages/rxtx/rxtx_2.1-7r2.bb index 260b70a1fe..0630d498d6 100644 --- a/packages/rxtx/rxtx_2.1-7r2.bb +++ b/packages/rxtx/rxtx_2.1-7r2.bb @@ -3,6 +3,10 @@ LICENSE = "LGPL" SECTION = "libs" HOMEPAGE = "http://rxtx.org" +PR = "r1" + +DEPENDS = "classpath classpath-native virtual/javac-native" + inherit autotools java-library SRC_URI = "\ @@ -10,6 +14,15 @@ SRC_URI = "\ file://rxtx-fixes-from-debian.patch;patch=1 \ " +do_compile() { + # Whatever configure detected it is completely unusable. So we override heavily. + oe_runmake \ + JAVAH="gjavah -classpath \$(CLASSPATH) -d \$(DEST) -jni" \ + JAR=gjar \ + JAVAC="javac -classpath \$(CLASSPATH) -d \$(TOP)/ -O -source 1.3 -target 1.3" \ + JAVAINCLUDEDIR=${STAGING_INCDIR}/classpath +} + do_install() { install -d ${D}/${libdir_jni} install -d ${D}/${datadir_java} |