aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xml-commons/dom4j_1.6.1.bb
blob: 343e1d9225148a988cad6f8d9e9d09a8e0a1bed4 (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
25
26
27
28
29
30
DESCRIPTION = "dom4j is a simple and flexible Java library for working with XML, XPath and XSLT"
LICENSE = "BSD"

HOMEPAGE = "http://dom4j.org

DEPENDS = "fastjar-native xerces-j xalan-j xpp2 xpp3 jaxen"

SRC_URI = "\
	${SOURCEFORGE_MIRROR}/dom4j/${P}.tar.gz \
	http://apache.org/dist/ws/jaxme/source/ws-jaxme-0.5.2-src.tar.gz \
	file://debian.patch;patch=1 \
	"

inherit java-library

do_compile() {
  mkdir -p build

  oe_makeclasspath cp -s xercesImpl xalan2 xpp2 xpp3 jaxen
	scp="src/java:${WORKDIR}/ws-jaxme-0.5.2/src/api"

  javac -sourcepath $scp -cp $cp -d build `find src/java -name "*.java" -and -not -wholename "*datatype*"`
  (cd src && find org -name "*.properties" -exec cp {} ../build/{} \;)

	rm -rf build/org/w3c
	rm -rf build/javax

  fastjar -C build -c -f ${JARFILENAME} .
}