# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-java/jdbc3-postgresql/jdbc3-postgresql-8.1_p404.ebuild,v 1.1 2005/12/20 05:22:00 nichoj Exp $ inherit java-pkg MY_PN="postgresql-jdbc" MY_PV="${PV/_p/-}" MY_P="${MY_PN}-${MY_PV}.src" DESCRIPTION="JDBC Driver for PostgreSQL" SRC_URI="http://jdbc.postgresql.org/download/${MY_P}.tar.gz" HOMEPAGE="http://jdbc.postgresql.org/" LICENSE="POSTGRESQL" SLOT="0" KEYWORDS="~x86 ~ppc ~sparc ~amd64" IUSE="doc examples jikes source" DEPEND=">=virtual/jdk-1.4 >=dev-java/ant-core-1.6 jikes? ( dev-java/jikes ) source? ( app-arch/zip )" RDEPEND=">=virtual/jre-1.4" S="${WORKDIR}/${MY_P}" src_compile() { local antflags="jar" use doc && antflags="${antflags} publicapi" use jikes && antflags="${antflags} -Dbuild.compiler=jikes" ant ${antflags} || die "build failed!" } src_install() { java-pkg_newjar jars/postgresql.jar ${PN}.jar use doc && java-pkg_dohtml -r ${S}/build/publicapi/* if use examples; then dodir /usr/share/doc/${PF}/examples cp -r ${S}/example/* ${D}/usr/share/doc/${PF}/examples java-pkg_dojar jars/postgresql-examples.jar fi use source && java-pkg_dosrc ${S}/org }