diff options
Diffstat (limited to 'dev-java/colt/colt-1.1.0.ebuild')
-rw-r--r-- | dev-java/colt/colt-1.1.0.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-java/colt/colt-1.1.0.ebuild b/dev-java/colt/colt-1.1.0.ebuild deleted file mode 100644 index 7bb99e12807f..000000000000 --- a/dev-java/colt/colt-1.1.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/colt/colt-1.1.0.ebuild,v 1.11 2006/10/05 15:17:03 gustavoz Exp $ - -inherit java-pkg - -DESCRIPTION="Colt provides a set of Open Source Libraries for High Performance Scientific and Technical Computing in Java." -SRC_URI="http://dsd.lbl.gov/~hoschek/colt-download/releases/${P}.zip" -HOMEPAGE="http://www-itg.lbl.gov/~hoschek/colt/" -LICENSE="colt" -IUSE="doc jikes" -SLOT="0" -KEYWORDS="x86 ~ppc amd64" - -DEPEND=">=virtual/jdk-1.4 - dev-java/ant-core - app-arch/unzip - jikes? ( dev-java/jikes )" - -RDEPEND=">=virtual/jre-1.4" - -S=${WORKDIR}/${PN} - -src_compile() { - local antflags="javac" - use jikes && antflags="${antflags} -Dbuild.compiler=jikes" - ant ${antflags} jar || die "compile problem" - use doc && ant javadoc -} - -src_install() { - java-pkg_dojar lib/*.jar - dohtml README.html - use doc && java-pkg_dohtml -r doc/* -} |