blob: 59f1bb73001fb70a98d093c3e286625f9bf684c8 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/sax/sax-2.2.1-r1.ebuild,v 1.3 2007/01/11 13:43:00 corsair Exp $
inherit java-pkg-2 java-ant-2
DESCRIPTION="SAX is the Simple API for XML, originally a Java-only API. SAX was the first widely adopted API for XML in Java."
HOMEPAGE="http://sax.sourceforge.net/"
SRC_URI="mirror://sourceforge/sax/sax2r3.zip"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~ppc ppc64 ~x86"
IUSE="doc source"
DEPEND=">=virtual/jdk-1.3
app-arch/unzip
dev-java/ant"
RDEPEND=">=virtual/jre-1.3"
S=${WORKDIR}/sax2r3
src_unpack() {
unpack ${A}
cd ${S}
rm -rf classes *.jar
}
src_compile() {
local antflags="jar"
use doc && antflags="${antflags} javadoc"
eant ${antflags} || die "failed to compile"
}
src_install() {
java-pkg_newjar sax2.jar ${PN}.jar
dodoc ChangeLog CHANGES README
use doc && java-pkg_dohtml -r docs/javadoc/*
use source && java-pkg_dosrc ${S}/src/*
}
|