blob: 5bf2b46839246d5b377a68be3679e3383ea22274 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/sun-dtdparser/sun-dtdparser-1.0.ebuild,v 1.3 2007/05/23 17:24:36 flameeyes Exp $
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Sun DTDParser"
HOMEPAGE="https://jaxb2-sources.dev.java.net/"
# Downloadable from https://jaxb2-sources.dev.java.net/
SRC_URI="mirror://gentoo/dtd-parser-${PV}-src.zip"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
IUSE=""
COMMON_DEP=""
RDEPEND=">=virtual/jre-1.4
${COMMON_DEP}"
DEPEND=">=virtual/jdk-1.4
${COMMON_DEP}"
S="${WORKDIR}/dtd-parser-${PV}"
src_install() {
java-pkg_newjar "${S}/target/dtd-parser-1.0.jar"
use source && java-pkg_dosrc src/*
use doc && java-pkg_dojavadoc dist/docs/api
}
|