summaryrefslogtreecommitdiff
blob: 4c6aee8cd984d4812b6f827ae8c63138071a3247 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

JAVA_PKG_IUSE="doc source"

inherit java-pkg-2 java-pkg-simple

DESCRIPTION="A text-processing Java API that serialize objects to XML and back again"
HOMEPAGE="http://x-stream.github.io"
SRC_URI="http://central.maven.org/maven2/com/thoughtworks/${PN}/${PN}/${PV}/${P}-sources.jar -> ${P}.jar"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"

CDEPEND="
	dev-java/xom:0
	dev-java/xpp3:0
	dev-java/jdom:0
	dev-java/jdom:2
	dev-java/kxml:2
	dev-java/cglib:3
	dev-java/dom4j:1
	dev-java/joda-time:0
	dev-java/jettison:0"

# This package does need Java 8. See bug 564616.
RDEPEND="
	${CDEPEND}
	>=virtual/jre-1.8"

DEPEND="
	${CDEPEND}
	>=virtual/jdk-1.8
	app-arch/unzip"

JAVA_GENTOO_CLASSPATH="
	xom
	xpp3
	jdom
	kxml-2
	jdom-2
	dom4j-1
	cglib-3
	jettison
	joda-time"

# Two drivers for two very old implementations of StAX.
# StAX has been last-rited from Gentoo as it is now part of the Java 6 JDK.
# See bug 561504. These drivers rely on ancient APIs that aren't maintained
# upstream and may contain security holes.
JAVA_RM_FILES=(
	com/thoughtworks/xstream/io/xml/WstxDriver.java
	com/thoughtworks/xstream/io/xml/BEAStaxDriver.java
)