blob: edb4d4ab01b2f88e3d0bb4d32afd953960a9d327 (
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/dev-java/glazedlists/glazedlists-0.9.6.ebuild,v 1.6 2005/10/07 21:08:40 betelgeuse Exp $
inherit java-pkg
DESCRIPTION="A toolkit for list transformations"
HOMEPAGE="http://publicobject.com/glazedlists/"
SRC_URI="https://glazedlists.dev.java.net/files/documents/1073/13000/${P}-source.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86"
IUSE="doc jikes source" # junit
RESTRICT="nomirror"
RDEPEND=">=virtual/jre-1.4"
DEPEND=">=virtual/jdk-1.4
dev-java/ant-core
app-arch/unzip
jikes? ( >=dev-java/jikes-1.21 )"
#junit? ( dev-java/junit )"
S=${WORKDIR}
src_compile() {
local antflags="jar"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
#use junit && antflags="${antflags} test"
use doc && antflags="${antflags} docs"
ant ${antflags} || die "compile problem"
}
src_install() {
java-pkg_dojar glazedlists.jar
use doc && java-pkg_dohtml docs && dohtml readme.html
use source && java-pkg_dosrc source
}
|