You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-java/jnr-x86asm/jnr-x86asm-1.0.1.ebuild

42 lines
806 B

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
JAVA_PKG_IUSE="doc source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="A pure-java port of asmjit"
HOMEPAGE="https://github.com/jnr"
SRC_URI="https://github.com/jnr/${PN}/tarball/${PV} -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="1.0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=virtual/jre-1.5"
DEPEND=">=virtual/jdk-1.5"
src_unpack() {
unpack ${A}
mv jnr-jnr-x86asm-* ${P} || die
}
java_prepare() {
cp "${FILESDIR}"/${PN}_maven-build.xml build.xml || die
}
JAVA_ANT_ENCODING="UTF-8"
EANT_EXTRA_ARGS="-Dmaven.build.finalName=${PN}"
src_install() {
java-pkg_newjar target/${PN}.jar
use doc && java-pkg_dojavadoc target/site/apidocs
use source && java-pkg_dosrc src/main/java/*
}