blob: 2db7e6ddbac3126610e09a0e945e7bf9f4e6864b (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="6"
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Pure Java library for reading from and writing to MS Access databases"
HOMEPAGE="http://jackcess.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}-sources.jar"
LICENSE="Apache-2.0"
SLOT="1"
KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
CP_DEPEND=">=dev-java/commons-lang-2.6:2.1
>=dev-java/commons-logging-1.1.3:0
>=dev-java/log4j-1.2.7:0"
DEPEND=">=virtual/jdk-1.7
app-arch/unzip
${CP_DEPEND}"
RDEPEND=">=virtual/jre-1.7
${CP_DEPEND}"
src_compile() {
java-pkg-simple_src_compile
java-pkg_addres "${PN}.jar" .
}
|