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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/ant-tasks/ant-tasks-1.6.5.ebuild,v 1.6 2006/09/17 03:46:02 wormo Exp $
inherit java-pkg eutils
MY_PV=${PV/_/}
MY_P=${PN}-${MY_PV}
DESCRIPTION="Apache ANT Optional Tasks Jar Files"
HOMEPAGE="http://ant.apache.org/"
SRC_URI="mirror://apache/ant/source/apache-ant-${PV}-src.tar.bz2"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~x86 ~amd64 ppc ~sparc ~ppc64"
IUSE="javamail noantlr nobcel nobeanutils nobsh nobsf nocommonsnet nocommonslogging nojdepend nojsch nojython nolog4j nooro noregexp norhino noxalan noxerces"
RDEPEND=">=virtual/jre-1.4
=dev-java/ant-core-${PV}*
>=dev-java/junit-3.8
!nolog4j? ( >=dev-java/log4j-1.2.8 )
!noxerces? ( >=dev-java/xerces-2.6.2-r1 )
!noxalan? ( >=dev-java/xalan-2.5.2 )
!nobsh? ( >=dev-java/bsh-1.2-r7 )
!nobsf? ( >=dev-java/bsf-2.3.0-r2 )
!noantlr? ( >=dev-java/antlr-2.7.2 )
!nobeanutils? ( =dev-java/commons-beanutils-1.6* )
!nocommonslogging? ( >=dev-java/commons-logging-1.0.3 )
!nocommonsnet? ( >=dev-java/commons-net-1.1.0 )
!nobcel? ( >=dev-java/bcel-5.1 )
!nooro? ( >=dev-java/jakarta-oro-2.0.8-r1 )
!norhino? ( =dev-java/rhino-1.5* )
!nojdepend? ( >=dev-java/jdepend-2.6 )
!nojsch? ( >=dev-java/jsch-0.1.12 )
!noregexp? ( >=dev-java/jakarta-regexp-1.3-r2 )
!nojython? ( >=dev-java/jython-2.1-r5 )
javamail? ( >=dev-java/sun-javamail-bin-1.3 )"
DEPEND=">=virtual/jdk-1.4
>=dev-java/java-config-1.2
${RDEPEND}"
S="${WORKDIR}/apache-ant-${MY_PV}"
src_compile() {
addwrite "/proc/self/maps"
export JAVA_HOME=${JDK_HOME}
if [ `arch` == "ppc" ] ; then
# We're compiling _ON_ PPC
export THREADS_FLAG="green"
fi
local p="ant-core,junit" libs
use noantlr || p="${p},antlr"
use nobcel || p="${p},bcel"
use nobeanutils || p="${p},commons-beanutils-1.6"
use nobsh || p="${p},bsh"
use nobsf || p="${p},bsf-2.3"
use nocommonslogging || p="${p},commons-logging"
use nocommonsnet || p="${p},commons-net"
use nojdepend || p="${p},jdepend"
use nojsch || p="${p},jsch"
use nojython || p="${p},jython"
use nolog4j || p="${p},log4j"
use nooro || p="${p},jakarta-oro-2.0"
use noregexp || p="${p},jakarta-regexp-1.3"
use norhino || p="${p},rhino-1.5"
use noxalan || p="${p},xalan"
use noxerces || p="${p},xerces-2"
use javamail && p="${p},sun-javamail-bin,sun-jaf-bin"
CLASSPATH="." ant -Dant.install=${ANT_HOME} -lib $(java-pkg_getjars ${p}) || die "build failed"
}
src_install() {
dodir /usr/share/ant-core/lib
for jar in build/lib/ant-*.jar; do
[[ "$(basename ${jar})" == "ant-launcher.jar" ]] && continue
java-pkg_dojar ${jar}
dosym /usr/share/${PN}/lib/$(basename ${jar}) /usr/share/ant-core/lib/
done
}
pkg_postinst() {
local noset=false
for x in ${IUSE} ; do
if [ "${x:0:2}" == "no" ] ; then
use ${x} && noset=true
fi
done
if [ ${noset} == "true" ]; then
ewarn "You have disabled some of the ant tasks. Be advised that this may"
ewarn "break building some of the Java packages!!"
ewarn ""
ewarn "We can only offer very limited support in cases where dev-java/ant-tasks"
ewarn "has been build with essential features disabled."
fi
}
|