blob: dc378ebec73eec9efdc9feaf8d5eeff92d069c9e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/log4j/log4j-1.2.15.ebuild,v 1.7 2008/05/12 14:14:56 corsair Exp $
JAVA_PKG_IUSE="doc javamail jms jmx source"
inherit java-pkg-2 java-ant-2
MY_P="apache-${P}"
DESCRIPTION="A low-overhead robust logging package for Java"
SRC_URI="mirror://apache/logging/${PN}/${PV}/${MY_P}.tar.gz"
HOMEPAGE="http://logging.apache.org/log4j/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 x86"
# jikes support disabled: bug #108819
IUSE="doc javamail jms jmx source"
CDEPEND="javamail? ( java-virtuals/javamail dev-java/sun-jaf )
jmx? ( dev-java/sun-jmx )
jms? ( =dev-java/openjms-bin-0.7.6 )"
RDEPEND=">=virtual/jre-1.4
${CDEPEND}"
# We should get log4j working with openjms but at the moment that would bring
# a circular dependency.
# jms? ( || (=dev-java/openjms-0.7.6* =dev-java/openjms-bin-0.7.6* ))"
# Needs the a newer ant-core because otherwise source 1.1 and target 1.1 fails
# on at least blackdown-jdk-1.4.2.02. The other way to go around this is to
# explicitly set the javac.source and javac.target properties in the ebuild.
DEPEND=">=virtual/jdk-1.4
>=dev-java/ant-core-1.6.5
${CDEPEND}"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
cd "${S}"
rm -rf dist/
# Takes javamail from system env without this
java-ant_xml-rewrite -f build.xml -c -e available -a ignoresystemclasses -v "true"
java-pkg_filter-compiler jikes
}
src_compile() {
# Because we depend on >=1.4 we always have jaxp
local antflags="jar -Djaxp-present=true"
use javamail && antflags="${antflags} -Djavamail.jar=$(java-pkg_getjar javamail mail.jar) -Dactivation.jar=$(java-pkg_getjar sun-jaf activation.jar)"
use jmx && antflags="${antflags} -Djmx.jar=$(java-pkg_getjar sun-jmx jmxri.jar) -Djmx-extra.jar=$(java-pkg_getjar sun-jmx jmxtools.jar)"
#use jms && antflags="${antflags} -Djms.jar=$(java-pkg_getjar openjms jms.jar)"
use jms && antflags="${antflags} -Djms.jar=/opt/openjms/lib/jms-1.0.2a.jar"
eant ${antflags}
}
src_install() {
java-pkg_newjar dist/lib/${P}.jar ${PN}.jar
if use doc ; then
java-pkg_dojavadoc site/apidocs
java-pkg_dohtml -r site/*
rm -fr "${D}/usr/share/doc/${P}/html/apidocs"
cd "${D}/usr/share/doc/${P}/html"
ln -s api apidocs
cd "${S}"
fi
use source && java-pkg_dosrc src/main/java/*
}
|