blob: 8638e6d6f54c9f02e8d6d8167c7af9e49f254a60 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/log4j/log4j-1.2.14-r2.ebuild,v 1.2 2007/11/20 19:05:25 mr_bones_ Exp $
JAVA_PKG_IUSE="doc javamail jms jmx source"
inherit java-pkg-2 java-ant-2
MY_P="logging-${P}"
DESCRIPTION="A low-overhead robust logging package for Java"
SRC_URI="mirror://apache/logging/log4j/${PV}/${MY_P}.tar.gz"
HOMEPAGE="http://logging.apache.org/log4j/"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
# 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
xml-rewrite.py -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
use doc && dohtml -r docs/*
use source && java-pkg_dosrc src/java/*
}
|