# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/jldap/jldap-20040730.ebuild,v 1.7 2005/12/08 13:07:53 betelgeuse Exp $ inherit java-pkg DESCRIPTION="The LDAP Class Libraries for Java (JLDAP) enable you to write applications to access, manage, update, and search for information stored in directories accessible using LDAPv3." HOMEPAGE="http://www.openldap.org/jldap/" SRC_URI="mirror://gentoo/jldap-Sep_ndk_2003-gentoo.tar.bz2" LICENSE="OPENLDAP" SLOT="0" KEYWORDS="x86 ppc ~sparc amd64" IUSE="doc jikes" DEPEND=">=virtual/jdk-1.4 >=dev-java/ant-core-1.5.1 jikes? ( dev-java/jikes )" RDEPEND=">=virtual/jdk-1.2" S=${WORKDIR}/${PN} src_compile() { local antflags="jar" use jikes && antflags="${antflags} -Dbuild.compiler=jikes" use doc && antflags="${antflags} doc" ant ${antflags} || die "Blast it all!!" } src_install() { dodoc README java-pkg_dojar lib/* use doc && java-pkg_dohtml -r doc/* }