summaryrefslogtreecommitdiff
blob: 1481ca25d87b1fac84725e09dd7bf59b9ec133e5 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/jaimlib/jaimlib-0.5.ebuild,v 1.3 2005/10/07 15:32:56 mkennedy Exp $

inherit java-pkg

DESCRIPTION="A Java library that implements the AOL Toc protocol"
SRC_URI="mirror://sourceforge/jaimlib/jaimlibsrc-${PV}.tar.gz"
HOMEPAGE="http://jaimlib.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="jikes doc"

DEPEND=">=virtual/jdk-1.4
	>=dev-java/ant-1.5
	jikes? ( >=dev-java/jikes-1.16 )"

RDEPEND=">=virtual/jre-1.4"

S=${WORKDIR}/${PN}

src_compile() {
	local antflags="jar"
	use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
	use doc && antflags="${antflags} javadoc"
	ant ${antflags} || die "compilation problem"
}

src_install() {
	java-pkg_dojar lib/${PN}*.jar
	dodoc readme.txt changes.txt
	use doc && dohtml -r docs/apidoc
}