blob: 92b1e75914283485daef47a61e3755f807ff53d1 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/hessian/hessian-2.1.12-r2.ebuild,v 1.1 2006/07/27 15:23:53 nichoj Exp $
inherit java-pkg-2 java-ant-2
DESCRIPTION="The Hessian binary web service protocol makes web services usable without requiring a large framework, and without learning yet another alphabet soup of protocols."
HOMEPAGE="http://www.caucho.com/hessian/"
SRC_URI="http://www.caucho.com/hessian/download/${P}-src.jar"
LICENSE="Apache-1.1"
SLOT="2.1"
KEYWORDS="~amd64 ~x86"
IUSE="doc source"
COMMON_DEP=" =dev-java/servletapi-2.3*
=dev-java/caucho-services-${PV}*"
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
# FIXME doesn't like Java 1.5 XML APIs
DEPEND="=virtual/jdk-1.4*
source? ( app-arch/zip )
dev-java/ant-core
${COMMON_DEP}"
src_unpack() {
jar xvf ${DISTDIR}/${A}
# We need to move things around a bit
mkdir -p ${S}/src
mv com ${S}/src
rm -fr ${S}/src/com/caucho/services
cd ${S}
# No included ant script! Bad Java developer, bad!
cp ${FILESDIR}/build-${PV}.xml build.xml
# Populate classpath
local classpath="classpath=$(java-pkg_getjars servletapi-2.3)"
classpath="${classpath}:$(java-pkg_getjars caucho-services-2.1)"
echo ${classpath} >> build.properties
}
src_compile() {
eant -Dproject.name=${PN} jar $(use_doc)
}
src_install() {
java-pkg_dojar dist/${PN}.jar
use doc && java-pkg_dohtml -r dist/doc/api
use source && java-pkg_dosrc src/*
}
|