diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2016-12-04 21:37:38 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2016-12-05 15:16:52 +0100 |
commit | fab2ed732c4b25f1804c5743002f2c7a75408e7c (patch) | |
tree | 0a550224200706a0b38a9517be97d1db63c1a0b8 /dev-java/jackcess/jackcess-1.2.14.3.ebuild | |
parent | dev-perl/Date-Manip: Bump to version 6.57 (diff) | |
download | gentoo-fab2ed732c4b25f1804c5743002f2c7a75408e7c.tar.gz gentoo-fab2ed732c4b25f1804c5743002f2c7a75408e7c.tar.bz2 gentoo-fab2ed732c4b25f1804c5743002f2c7a75408e7c.zip |
dev-java/jackcess: New package
Jackcess is a pure Java library for reading and writing MS Access
databases. It provides a robust, cross-platform backend API allowing other
developers to integrate MS Access support into their Java applications.
This package is needed for >=sci-libs/gdal-2.0.3[mdb].
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-java/jackcess/jackcess-1.2.14.3.ebuild')
-rw-r--r-- | dev-java/jackcess/jackcess-1.2.14.3.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-java/jackcess/jackcess-1.2.14.3.ebuild b/dev-java/jackcess/jackcess-1.2.14.3.ebuild new file mode 100644 index 000000000000..2db7e6ddbac3 --- /dev/null +++ b/dev-java/jackcess/jackcess-1.2.14.3.ebuild @@ -0,0 +1,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" . +} |