blob: 1680770919013771fd69dcaefc61985e973ae959 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-validator/commons-validator-1.0.2.ebuild,v 1.1 2003/04/23 02:24:18 absinthe Exp $
inherit jakarta-commons
S="${WORKDIR}/${P}-src"
DESCRIPTION="Jakarta component to validate user input, or data input"
HOMEPAGE="http://jakarta.apache.org/commons/validator/"
SRC_URI="http://apache.ttlhost.com/jakarta/commons/validator/source/${PN}-${PV}-src.tar.gz"
DEPEND=">=virtual/jdk-1.3
>=dev-java/ant-1.4
>=dev-java/oro-2.0.6
>=dev-java/commons-digester-1.0
>=dev-java/commons-collections-2.0
>=dev-java/commons-logging-1.0
>=dev-java/commons-beanutils-1.0
>=dev-java/xerces-2.0.1
junit? ( >=junit-3.7 )"
RDEPEND=">=virtual/jre-1.3"
LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc"
IUSE="doc jikes junit"
src_compile() {
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`" >> build.properties
echo "xerces.jar=`java-config --classpath=xerces`" >> build.properties
jakarta-commons_src_compile myconf make
# UGLY HACK
mv ${S}/target/conf/MANIFEST.MF ${S}/target/classes/
cd ${S}/target/classes
zip -r ../${PN}-${PV}.jar org
jakarta-commons_src_install dojar
use doc && jakarta-commons_src_compile makedoc
use doc && jakarta-commons_src_install html
}
|