blob: 1ac0bf1312f5b0af1487452f27f0358f3e136d41 (
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
55
56
57
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/webgraph/webgraph-1.4.ebuild,v 1.1 2004/12/04 13:53:41 karltk Exp $
inherit eutils java-pkg
DESCRIPTION="WebGraph is a framework to study the web graph. It provides simple ways to manage very large graphs, exploiting modern compression techniques."
SRC_URI="http://webgraph.dsi.unimi.it/${P}-src.tar.gz"
HOMEPAGE="http://webgraph.dsi.unimi.it"
LICENSE="LGPL-2.1"
SLOT="1.4"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="doc jikes"
DEPEND=">=virtual/jdk-1.4
>=dev-java/jal-20031117"
RDEPEND=">=virtual/jre-1.4
=dev-java/java-getopt-1.0*
=dev-java/fastutil-4.3*
=dev-java/colt-1.1*
=dev-java/mg4j-0.9*"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/webgraph-gentoo.patch
mkdir lib/ && cd lib/
java-pkg_jar-from java-getopt-1
java-pkg_jar-from fastutil-4.3
java-pkg_jar-from colt colt.jar
java-pkg_jar-from jal jal.jar
java-pkg_jar-from mg4j-0.9
}
src_compile() {
local antflags="jar"
if use doc; then
antflags="${antflags} javadoc"
fi
if use jikes; then
antflags="${antflags} -Dbuild.compiler=jikes"
fi
ant ${antflags}
}
src_install() {
mv ${P}.jar ${PN}.jar
java-pkg_dojar ${PN}.jar
dodoc CHANGES COPYING
if use doc; then
java-pkg_dohtml -r docs/*
fi
}
|