blob: 1f3abedf5b86e168e72aa5d1d59c36e98f240932 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-validator/commons-validator-1.1.3.ebuild,v 1.8 2005/02/23 21:48:51 luckyduck Exp $
inherit java-pkg
DESCRIPTION="Jakarta component to validate user input, or data input"
HOMEPAGE="http://jakarta.apache.org/commons/validator/"
SRC_URI="mirror://apache/jakarta/commons/validator/source/${PN}-${PV}-src.tar.gz mirror://gentoo/commons-validator-1.1.3-gentoo-missingfiles.tar.bz2"
DEPEND=">=virtual/jdk-1.3
>=dev-java/ant-1.4
jikes? ( dev-java/jikes )"
RDEPEND=">=virtual/jre-1.3
>=dev-java/oro-2.0.8
>=dev-java/commons-digester-1.5
>=dev-java/commons-collections-2.1
>=dev-java/commons-logging-1.0.3
>=dev-java/commons-beanutils-1.6
>=dev-java/xerces-2.6.2-r1"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"
IUSE="doc jikes"
src_unpack() {
unpack ${A}
cd ${S}
#dirty hack
sed -e 's:target name="compile" depends="static":target name="compile" depends="prepare":' -i build.xml
echo "oro.jar=`java-config --classpath=oro`" >> build.properties
echo "commons-digester.jar=`java-config --classpath=commons-digester`" >> build.properties
echo "commons-collections.jar=`java-config --classpath=commons-collections`" >> build.properties
echo "commons-logging.jar=`java-config --classpath=commons-logging | sed s/.*://`" >> build.properties
echo "commons-beanutils.jar=`java-config --classpath=commons-beanutils | sed s/.*://`" >> build.properties
echo "xerces.jar=`java-config --classpath=xerces-2`" >> build.properties
}
src_compile() {
local antflags="compile"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} javadoc"
ant ${antflags} || die "build failed"
jar -cvf ${PN}.jar -C target/classes/ . || die "could not create jar"
}
src_install() {
cd ${S}
java-pkg_dojar ${PN}.jar
use doc && java-pkg_dohtml -r dist/docs/
dohtml PROPOSAL.html STATUS.html
dodoc LICENSE.txt
}
|