summaryrefslogtreecommitdiff
blob: 6cd65d4d3715ea53adb9fbac499137282a865543 (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/xdoclet/xdoclet-1.2.1.ebuild,v 1.3 2004/08/01 20:51:34 dholm Exp $

XJAVADOC_PV=1.0.3

DESCRIPTION="XDoclet is an extended Javadoc Doclet engine."
HOMEPAGE="http://xdoclet.sf.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.tgz
	mirror://gentoo/xjavadoc-${XJAVADOC_PV}-src.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="x86 ~amd64 ~ppc"
IUSE="jikes"

RDEPEND=">=virtual/jdk-1.3"
DEPEND="${RDEPEND}
	jikes? ( dev-java/jikes )
	>=dev-java/ant-1.5"

#	 cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/xdoclet \
#		 co -r XJAVADOC_1_0_3 xjavadoc
#	 tar cjf xjavadoc-1.0.3-src.tar.bz2 xjavadoc

src_unpack() {
	unpack ${A}
	if use jikes; then
		einfo "Configuring build for Jikes"
		cp build.properties build.properties~ \
			&& sed -e 's/compiler = modern/compiler = jikes/' <build.properties~ >build.properties
	fi
}

src_compile() {
	# Maven is just plain madness...
	#
	# You can grab the documentation on-line at http://xdoclets.sf.net
	# or use the XDoclet Maven plugin installed with dev-java/maven.
	#
	# You may also consider placing an ebuild "enchancement" at
	# http://bugs.gentoo.org/ which allows Maven to work without
	# downloading sundry JARs from the Internet.

	ANT_OPT=-Xmx128m ant \
		-Domit.maven=true \
		-Domit.docs=true \
		-Dmaven.command=true || die
}

src_install() {
	dojar target/lib/*.jar
	dodoc LICENSE.txt
	cp -r target/docs target/generated-xdocs samples ${D}/usr/share/doc/${P}
}