blob: 9167849a32716bf78f74e5d255bfdcc79ffa88cd (
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
|
# Copyright 1999-2005 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.ebuild,v 1.6 2005/07/13 00:00:52 axxo Exp $
inherit eutils java-pkg
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-1.1"
SLOT="1"
KEYWORDS="x86 amd64"
IUSE="debug doc jikes"
RDEPEND=">=virtual/jre-1.4
=dev-java/servletapi-2.4*
dev-java/commons-logging
dev-java/commons-discovery
dev-java/log4j
dev-java/wsdl4j
>=dev-java/xerces-2
=dev-java/rhino-1.5*
>=dev-java/castor-0.9.5.3
>=dev-java/sun-jimi-1.0
=dev-java/commons-httpclient-2*
=dev-java/bsf-2.3*
dev-java/sun-jaf-bin
dev-java/sun-javamail-bin"
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
>=dev-java/ant-1.6
jikes? ( >=dev-java/jikes-1.21 )"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/axis-1.2-gentoo.patch
find . -name "*.jar" -exec rm {} \;
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-bin
java-pkg_jar-from servletapi-2.4
java-pkg_jar-from sun-javamail-bin
java-pkg_jar-from xerces-2
java-pkg_jar-from sun-jimi
java-pkg_jar-from castor-0.9
java-pkg_jar-from commons-httpclient
java-pkg_jar-from bsf-2.3
}
src_compile() {
local antflags="compile -Ddeprecation=false -Dbase.path=/opt"
use doc && antflags="${antflags} javadocs"
use debug && antflags="${antflags} -Ddebug=on"
use !debug && antflags="${antflags} -Ddebug=off"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
ant ${antflags} || die "compilation problem"
}
src_install() {
java-pkg_dojar build/lib/axis*.jar
java-pkg_dojar build/lib/jaxrpc.jar
java-pkg_dojar build/lib/saaj.jar
if use doc; then
dodoc ${S}/release-notes.html ${S}/release-notes.html ${S}/doc/*
java-pkg_dohtml ${S}/build/javadocs/
fi
}
|