blob: 3d95df10127b087eea10c6efd7306a90e5042835 (
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
72
73
74
75
76
77
78
|
# 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.4.ebuild,v 1.1 2005/11/26 13:36:10 betelgeuse Exp $
inherit java-pkg
MY_P=${P}-src
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/${MY_P}.tar.gz
mirror://gentoo/${P}-gentoo-missingfiles.tar.bz2"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="doc examples jikes source"
# Was not able to test on 1.3 jdk at this point. Feel free to to lower this
# back to 1.3 if you have tested it on one and proved working. Then you
# probably need to bring the xerces dependency back.
RDEPEND=">=virtual/jre-1.4
=dev-java/jakarta-oro-2.0*
>=dev-java/commons-digester-1.5
>=dev-java/commons-collections-3.1
>=dev-java/commons-logging-1.0.3
=dev-java/commons-beanutils-1.6*"
DEPEND=">=virtual/jdk-1.4
>=dev-java/ant-1.4
${RDEPEND}
jikes? ( dev-java/jikes )
source? ( app-arch/zip )"
src_unpack() {
unpack ${A}
cd ${S}
rm *.jar
#dirty hack
sed -e 's:target name="compile" depends="static":target name="compile" depends="prepare":' -i build.xml \
|| die "Failed to sed build.xml"
echo "oro.jar=$(java-pkg_getjars jakarta-oro-2.0)" >> build.properties
echo "commons-digester.jar=$(java-pkg_getjars commons-digester)" >> build.properties
echo "commons-beanutils.jar=$(java-pkg_getjars commons-beanutils-1.6)" >> build.properties
}
src_compile() {
local antflags="compile"
# Because the build.xml file uses <pathelement location="">
# we can only have only have one jar per property
antflags="${antflags} -Dcommons-logging.jar=$(java-pkg_getjar commons-logging commons-logging.jar)"
antflags="${antflags} -Dcommons-collections.jar=$(java-pkg_getjars commons-collections)"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use doc && antflags="${antflags} javadoc"
ant ${antflags} || die "build failed"
jar -cf ${PN}.jar -C target/classes/ . || die "could not create jar"
}
src_install() {
java-pkg_dojar ${PN}.jar
if use doc; then
java-pkg_dohtml -r dist/docs/
java-pkg_dohtml PROPOSAL.html STATUS.html
fi
if use examples; then
dodir /usr/share/doc/${PF}/examples
cp -r src/example/* ${D}/usr/share/doc/${PF}/examples
fi
use source && java-pkg_dosrc src/share/*
}
|