blob: dd481176e2bc5dd749f561e9f483546defa79538 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/dev-java/dbconnectionbroker/dbconnectionbroker-1.0.13.ebuild,v 1.1 2002/07/08 20:13:31 blizzy Exp $
A="DbConnectionBroker${PV}.tar"
S=${WORKDIR}
DESCRIPTION="JDBC connection pooling and brokering"
HOMEPAGE="http://www.javaexchange.com"
SRC_URI="ftp://www.javaexchange.com/javaexchange/DbConnectionBroker${PV}.tar"
LICENSE="as-is"
SLOT="0"
KEYWORDS="*"
RDEPEND=">=virtual/jdk-1.2"
DEPEND="${RDEPEND}"
src_compile() {
jar cf DbConnectionBroker.jar com || die "jar problem"
}
src_install() {
dojar DbConnectionBroker.jar
dohtml -r doc/*
}
|