diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2007-05-03 12:40:24 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2007-05-03 12:40:24 +0000 |
commit | a96d01f9cf5b79ac0b6f25989d60aeca753aad41 (patch) | |
tree | 75a68a50980fb6df2da78e2f2c4e474b16b0e9b4 /dev-java/fastutil/fastutil-4.3.1-r1.ebuild | |
parent | x86 stable wrt #176389 (diff) | |
download | gentoo-2-a96d01f9cf5b79ac0b6f25989d60aeca753aad41.tar.gz gentoo-2-a96d01f9cf5b79ac0b6f25989d60aeca753aad41.tar.bz2 gentoo-2-a96d01f9cf5b79ac0b6f25989d60aeca753aad41.zip |
Migrate fastutil-4.3.1, some QA fixes.
(Portage version: 2.1.2.5)
Diffstat (limited to 'dev-java/fastutil/fastutil-4.3.1-r1.ebuild')
-rw-r--r-- | dev-java/fastutil/fastutil-4.3.1-r1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-java/fastutil/fastutil-4.3.1-r1.ebuild b/dev-java/fastutil/fastutil-4.3.1-r1.ebuild new file mode 100644 index 000000000000..667f97452dee --- /dev/null +++ b/dev-java/fastutil/fastutil-4.3.1-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/fastutil/fastutil-4.3.1-r1.ebuild,v 1.1 2007/05/03 12:40:24 nelchael Exp $ + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Provides type-specific maps, sets and lists with a small memory footprint for much faster access and insertion." +SRC_URI="http://fastutil.dsi.unimi.it/${P}-src.tar.gz" +HOMEPAGE="http://fastutil.dsi.unimi.it" +LICENSE="LGPL-2.1" +SLOT="4.3" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="" + +DEPEND=">=virtual/jdk-1.4" +RDEPEND=">=virtual/jre-1.4" + +src_compile() { + + emake sources || die "failed to make sources" + + java-pkg-2_src_compile + +} + +src_install() { + + java-pkg_newjar ${P}.jar + + dodoc CHANGES README + use doc && java-pkg_dojavadoc docs + use source && java-pkg_dosrc java/it + +} |