blob: 154cda1ff8f47fa3ff3f5c3f86eba702d8cfc12e (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-servers/axis/axis-1.2_rc2-r2.ebuild,v 1.3 2007/07/24 08:18:32 opfer Exp $
WANT_ANT_TASKS="ant-nodeps"
inherit eutils java-pkg-2 java-ant-2
MY_PV="${PV//./_}"
MY_PV="${MY_PV/_rc2/RC2}"
MY_P="${PN}-${MY_PV}"
SRCFILE="${MY_P}-src.tar.gz"
DESCRIPTION="Apache Axis SOAP implementation"
HOMEPAGE="http://ws.apache.org/axis/"
SRC_URI="mirror://apache/ws/${PN}/${MY_PV}/${SRCFILE}"
LICENSE="Apache-2.0"
SLOT="1"
KEYWORDS="amd64 x86"
IUSE="debug doc"
COMMON_DEPEND="
=dev-java/servletapi-2.4*
dev-java/commons-logging
dev-java/commons-discovery
dev-java/log4j
dev-java/wsdl4j
>=dev-java/xerces-2.7
=dev-java/rhino-1.5*
>=dev-java/castor-1.0
>=dev-java/sun-jimi-1.0
=dev-java/commons-httpclient-2*
>=dev-java/bsf-2.3
dev-java/sun-jaf
dev-java/sun-javamail"
RDEPEND="
>=virtual/jre-1.4
${COMMON_DEPEND}"
DEPEND="=virtual/jdk-1.4*
${COMMON_DEPEND}"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/axis-1.2-gentoo.patch"
find . -name "*.jar" -exec rm -v {} \;
cd "${S}/lib"
java-pkg_jar-from commons-discovery
java-pkg_jar-from commons-logging
java-pkg_jar-from log4j
java-pkg_jar-from wsdl4j
java-pkg_jar-from sun-jaf
java-pkg_jar-from servletapi-2.4
java-pkg_jar-from sun-javamail
java-pkg_jar-from xerces-2
java-pkg_jar-from sun-jimi
java-pkg_jar-from castor-1.0
java-pkg_jar-from commons-httpclient
java-pkg_jar-from bsf-2.3
}
src_compile() {
local antflags="compile -Ddeprecation=false -Dbase.path=/opt"
use debug && antflags="${antflags} -Ddebug=on"
use !debug && antflags="${antflags} -Ddebug=off"
# has prebuild javadocs
eant ${antflags}
}
src_install() {
java-pkg_dojar build/lib/axis*.jar
java-pkg_dojar build/lib/jaxrpc.jar
java-pkg_dojar build/lib/saaj.jar
dohtml release-notes.html changelog.html || die
if use doc; then
java-pkg_dohtml -r docs/*
dosym /usr/share/doc/${PF}/html/{apiDocs,api} || die
fi
}
|