summaryrefslogtreecommitdiff
blob: 31ccce04f9e9233bc2cc42471807f55950973933 (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
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/webgraph-bin/webgraph-bin-1.2.2-r1.ebuild,v 1.3 2004/10/22 11:50:32 absinthe Exp $

inherit 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."
MY_P=${P/-bin}
SRC_URI="http://webgraph.dsi.unimi.it/${MY_P}-bin.tar.gz"
HOMEPAGE="http://webgraph.dsi.unimi.it"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="doc"

RDEPEND=">=virtual/jdk-1.4
		>=dev-java/mg4j-bin-0.8.2"
S=${WORKDIR}/${MY_P}

src_compile() { :; }

src_install() {
	mv ${MY_P}.jar ${PN/-bin}.jar
	java-pkg_dojar ${PN/-bin}.jar
	use doc && java-pkg_dohtml -r docs/*
}