blob: 09d5e1a37cf0c216406a60f06ca356281d6e21c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jdbc2-postgresql/jdbc2-postgresql-7.4-r1.ebuild,v 1.2 2008/05/13 07:23:33 corsair Exp $
inherit java-pkg-2
At="pg74.215.jdbc2.jar"
S=${WORKDIR}
DESCRIPTION="JDBC Driver for PostgreSQL"
SRC_URI="http://jdbc.postgresql.org/download/${At}"
HOMEPAGE="http://jdbc.postgresql.org/"
KEYWORDS="~amd64 ~ppc ppc64 ~x86"
IUSE=""
LICENSE="POSTGRESQL"
SLOT="6"
DEPEND="app-arch/unzip"
RDEPEND=">=virtual/jre-1.2"
src_install() {
java-pkg_dojar ${DISTDIR}/${At}
}
|