blob: e853ea138139974f5478296685576a6a80c69191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
DESCRIPTION = "Bean Scripting Framework package"
LICENSES = "AL2.0"
AUTHOR = "Apache Software Foundation"
SRC_URI = "http://archive.apache.org/dist/jakarta/bsf/source/bsf-src-${PV}.tar.gz"
inherit java-library
DEPENDS = "fastjar-native jacl commons-logging rhino xalan-j bcel"
do_compile() {
mkdir -p build
oe_makeclasspath cp -s commons-logging jacl rhino bcel xalan2
# Remove netrexx and jython support
rm -Rf src/org/apache/bsf/engines/netrexx
rm -Rf src/org/apache/bsf/engines/jython
javac -sourcepath src -cp $cp -d build `find src -name "*.java"`
fastjar -C build -c -f ${JARFILENAME} .
}
|