blob: 169d9ffb4c47fe32cddc646e513a763807744304 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jal-bin/jal-bin-20031117.ebuild,v 1.2 2004/10/16 17:18:28 axxo Exp $
inherit java-pkg
DESCRIPTION="Jal is a partial port of the STL by the C++ Standard Template Library."
SRC_URI="http://vigna.dsi.unimi.it/jal/${P/-bin}-bin.tar.gz"
HOMEPAGE="http://vigna.dsi.unimi.it/jal/"
LICENSE="X11"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="doc"
RDEPEND=">=virtual/jdk-1.4
>=dev-java/fastutil-3.1"
src_compile () { :; }
src_install() {
mv ${P/-bin}.jar ${PN}.jar
java-pkg_dojar ${PN}.jar
use doc && java-pkg_dohtml -r docs/*
}
|