blob: b54d86113c09e182e8468e03cd5e26e23ee34b5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# 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.0_p311.ebuild,v 1.4 2005/09/10 15:10:50 axxo Exp $
inherit java-pkg
DESCRIPTION="JDBC Driver for PostgreSQL"
SRC_URI="http://jdbc.postgresql.org/download/postgresql-jdbc-${PV/_p/-}.src.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}/postgresql-jdbc-${PV/_p/-}.src
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
}
|