diff options
author | Chris Aniszczyk <zx@gentoo.org> | 2004-04-04 20:00:58 +0000 |
---|---|---|
committer | Chris Aniszczyk <zx@gentoo.org> | 2004-04-04 20:00:58 +0000 |
commit | 35f19664ac4134574ed7518c11d6fd6f5b40d4f1 (patch) | |
tree | 49bc4c3d091af68eda019ff8d1e881fd5dba46d0 /app-crypt/jacksum/jacksum-1.4.0.ebuild | |
parent | fixing Manifest (diff) | |
download | historical-35f19664ac4134574ed7518c11d6fd6f5b40d4f1.tar.gz historical-35f19664ac4134574ed7518c11d6fd6f5b40d4f1.tar.bz2 historical-35f19664ac4134574ed7518c11d6fd6f5b40d4f1.zip |
Initial Import. Closes #46458
Diffstat (limited to 'app-crypt/jacksum/jacksum-1.4.0.ebuild')
-rw-r--r-- | app-crypt/jacksum/jacksum-1.4.0.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/app-crypt/jacksum/jacksum-1.4.0.ebuild b/app-crypt/jacksum/jacksum-1.4.0.ebuild new file mode 100644 index 000000000000..417ee8e7173a --- /dev/null +++ b/app-crypt/jacksum/jacksum-1.4.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/jacksum/jacksum-1.4.0.ebuild,v 1.1 2004/04/04 20:00:58 zx Exp $ + +inherit java-pkg + +DESCRIPTION="Java utility for computing and verifying checksums: CRC*, MD*, SHA*, TIGER" +HOMEPAGE="http://www.jonelo.de/java/jacksum/" +SRC_URI="mirror://sourceforge/jacksum/${P}.zip" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc" +IUSE="jikes" +DEPEND=">=virtual/jdk-1.3.1 + app-arch/unzip + jikes? ( dev-java/jikes )" +RDEPEND=">=virtual/jre-1.3.1" + +S=${WORKDIR} + +src_unpack() { + unpack ${A} + cd ${S} + unzip -qq ${PN}-src.zip + rm ${PN} +} + +src_compile() { + local antflags="all" + use jikes && antflags="${antflags} -Dbuild.compiler=jikes" + ant ${antflags} || die "compilation error" +} + +src_install() { + java-pkg_dojar ${PN}.jar + cd ${S} + dodoc history.txt readme.txt + + # make exec wrapper + echo "#!/bin/sh" > ${PN} + echo "cd /usr/share/${PN}" >> ${PN} + echo '${JAVA_HOME}'/bin/java -jar lib/${PN}.jar '$*' >> ${PN} + dobin ${PN} +} |