summaryrefslogtreecommitdiff
blob: c122d1a65ffafe3dd3e39523bc8f720fbb711bb2 (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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/mockmaker/mockmaker-1.12.0_p20050104.ebuild,v 1.1 2005/01/04 23:13:33 luckyduck Exp $

inherit java-pkg

DESCRIPTION="Program for automatically creating source code for mock object."
SRC_URI="mirror://gentoo/${P}.tar.bz2"
HOMEPAGE="http://mockmaker.sourceforge.net"
LICENSE="MIT"
SLOT="1.12"
KEYWORDS="~x86 ~amd64"
IUSE="jikes"
DEPEND=">=virtual/jdk-1.4
	jikes? ( >=dev-java/jikes-1.21 )
	>=dev-java/ant-core-1.4
	~dev-java/qdox-20050104"
RDEPEND=">=virtual/jre-1.4"

src_unpack() {
	unpack ${A}
	cd ${S}/lib

	# we keep mmmockobjects.jar since it's used for bootstrapping
	java-pkg_jar-from qdox-1.6
}

src_compile() {
	local antflags="compile"
	if use jikes; then
		antflags="${antflags} -Dbuild.compiler=jikes"
	fi
	ant ${antflags} || die "failed to build"
}

src_install() {
	java-pkg_dojar dist/tmp/${PN}.jar
	dodoc LICENSE.txt README.txt

	if use doc; then
		java-pkg_dohtml -r doc/*
	fi
}