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/jempbox/jempbox-1.7.1-r1.ebuild

48 lines
880 B

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
JAVA_PKG_IUSE="doc source test"
inherit java-pkg-2 java-ant-2
MY_PN=pdfbox
DESCRIPTION="An open source Java library for parsing font files"
HOMEPAGE="https://pdfbox.apache.org/"
SRC_URI="mirror://apache/${MY_PN}/${PV}/${MY_PN}-${PV}-src.zip"
LICENSE="BSD"
SLOT="1.7"
KEYWORDS="amd64 ~x86"
IUSE=""
RDEPEND="
>=virtual/jre-1.8"
DEPEND="
>=virtual/jdk-1.8
app-arch/unzip
test? ( dev-java/ant-junit:0 )"
S="${WORKDIR}/${MY_PN}-${PV}/${PN}"
src_prepare() {
default
cp -v "${FILESDIR}"/${P}_maven-build.xml build.xml || die
}
JAVA_ANT_REWRITE_CLASSPATH="yes"
src_test() {
java-pkg-2_src_test
}
src_install() {
java-pkg_newjar target/${P}.jar ${PN}.jar
use doc && java-pkg_dojavadoc target/site/apidocs
use source && java-pkg_dosrc src/main/java/org
}