blob: 2a1a06456916533f6630b77091fb44f14cdba9e0 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/jnr-enxio/jnr-enxio-0.4.ebuild,v 1.1 2013/06/06 10:38:38 tomwij Exp $
EAPI="5"
JAVA_PKG_IUSE="doc examples source test"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Java Native Runtime Enhanced X-platform I/O"
SRC_URI="http://github.com/jnr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
HOMEPAGE="https://github.com/jnr/jnr-enxio"
SLOT="0"
KEYWORDS="~amd64 ~x86"
LICENSE="Apache-2.0"
CDEPEND="dev-java/jnr-constants:0
dev-java/jnr-ffi:0.7"
DEPEND="${CDEPEND}
>=virtual/jdk-1.5"
RDEPEND="${CDEPEND}
>=virtual/jre-1.5"
java_prepare() {
cp "${FILESDIR}"/${P}-build.xml build.xml || die
}
EANT_GENTOO_CLASSPATH="jnr-constants,jnr-ffi-0.7"
src_install() {
java-pkg_newjar target/${P}.jar ${PN}.jar
use source && java-pkg_dosrc src/main/java/jnr
use examples && java-pkg_doexamples src/main/java/jnr/enxio/example
use doc && java-pkg_dojavadoc target/site/apidocs
}
|