diff options
Diffstat (limited to 'dev-java/randomguid/randomguid-1.2.1.ebuild')
-rw-r--r-- | dev-java/randomguid/randomguid-1.2.1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/dev-java/randomguid/randomguid-1.2.1.ebuild b/dev-java/randomguid/randomguid-1.2.1.ebuild new file mode 100644 index 000000000000..ed76ed3258ce --- /dev/null +++ b/dev-java/randomguid/randomguid-1.2.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/randomguid/randomguid-1.2.1.ebuild,v 1.1 2004/03/07 02:50:38 zx Exp $ + +inherit java-pkg + +DESCRIPTION="Generate truly random, cryptographically strong GUIDs" +HOMEPAGE="http://www.javaexchange.com" +SRC_URI="ftp://www.javaexchange.com/javaexchange/RandomGUID.tar" +LICENSE="as-is" +SLOT="0" +KEYWORDS="x86 ppc sparc" +IUSE="jikes" +RDEPEND=">=virtual/jdk-1.2" +DEPEND="${RDEPEND} + jikes? ( >=dev-java/jikes-1.15 )" + +S=${WORKDIR} + +src_compile() { + mkdir -p com/javaexchange + mv RandomGUID.java com/javaexchange/RandomGUID.java~ + + # We need to move RandomGUID.class into the + # com.javaexchange package. This is necessary to prevent + # class lookup failures, such as when used with Tomcat + # (which has a different <default> package for JSP files). + cd com/javaexchange + echo >RandomGUID.java "package com.javaexchange;" + cat RandomGUID.java~ >>RandomGUID.java + + if [ `use jikes` ] ; then + jikes RandomGUID.java || die "compile problem" + else + javac RandomGUID.java || die "compile problem" + fi + + # don't want .java files in jar + rm RandomGUID.java* + + cd ${S} + jar cf RandomGUID.jar com || die "jar problem" +} + +src_install() { + java-pkg_dojar RandomGUID.jar + dodoc RandomGUIDdemo.java +} + +pkg_postinst() { + einfo "RandomGUID.class has been moved from the <default>" + einfo "package into com.javaexchange, so the fully qualified" + einfo "class name is now: com.javaexchange.RandomGUID" +} |