blob: 42c8fdca6039ff1d007fe33bc71b88c471d02ca2 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/ant/ant-1.5.4-r2.ebuild,v 1.1 2003/10/18 22:27:09 strider Exp $
inherit apache-ant
IUSE="doc junit regexp oro bsf bsh antlr jdepend js bcel jython"
SUPPORT_JARS="apache-ant-${PV}-support-files.tar.bz2"
S="${WORKDIR}/apache-ant-${PV}"
DESCRIPTION="Java-based build tool similar to 'make' that uses XML configuration files."
SRC_URI="mirror://apache/ant/source/apache-${PN}-${PV}-src.tar.bz2 http://dev.gentoo.org/~strider/${SUPPORT_JARS}"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"
DEPEND="virtual/glibc
>=virtual/jdk-1.3"
RDEPEND=">=virtual/jdk-1.3
app-shells/bash"
PDEPEND=""
src_unpack() {
unpack ${A}
cd ${S}
# Patch build.sh to die with non-zero exit code in case of errors.
# This patch may be useful for all ant versions.
epatch ${FILESDIR}/build.sh-exit-fix.patch.gz
# This patch will be used until ant 1.6 is released
epatch ${FILESDIR}/rpmbuild.patch.gz
}
src_compile() {
apache-ant_classpath
apache-ant_compile
}
src_install() {
cp ${FILESDIR}/${PV}/ant ${S}/src/ant
exeinto /usr/bin
doexe src/ant
for each in antRun runant.pl runant.py complete-ant-cmd.pl ; do
dobin ${S}/src/script/${each}
done
java-pkg_dojar build/lib/*.jar
dodoc LICENSE LICENSE.* README WHATSNEW KEYS
use doc && dohtml welcome.html
use doc && dohtml -r docs/*
}
|