blob: 06a49870d3b03c29dbac58040cd0d4fbce0e5969 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-jaxp/gnu-jaxp-1.0_beta1.ebuild,v 1.2 2003/03/17 00:11:08 absinthe Exp $
S=${WORKDIR}/${PN}-${PV}
P=${PN/-/}-${PV/_beta1/beta1}
DESCRIPTION="GNU JAXP, a free implementation of SAX parser API, DOM Level 2, Sun JAXP 1.1."
HOMEPAGE="http://www.gnu.org/software/classpathx/jaxp/"
SRC_URI="ftp://ftp.gnu.org/pub/gnu/classpathx/${P}.zip"
DEPEND=">=virtual/jdk-1.3"
RDEPEND=">=virtual/jre-1.3"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="doc"
src_unpack() {
unpack ${A}
}
src_install () {
cd ${WORKDIR}/${P}
dojar gnujaxp.jar || die "Unable to Install"
use doc && dohtml -r apidoc/*
}
|