mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-22 23:19:14 +02:00
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/39208/commits/8d529d8e21ded9976a6b77875510a2a8130cf2a7 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
29 lines
852 B
Bash
29 lines
852 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
JAVA_PKG_IUSE="doc source test"
|
|
MAVEN_ID="com.github.jai-imageio:jai-imageio-core:1.4.0"
|
|
JAVA_TESTING_FRAMEWORKS="junit-4"
|
|
|
|
inherit java-pkg-2 java-pkg-simple
|
|
|
|
DESCRIPTION="Java Advanced Imaging Image I/O Tools API core (standalone)"
|
|
HOMEPAGE="https://github.com/jai-imageio/jai-imageio-core"
|
|
SRC_URI="https://github.com/jai-imageio/${PN}/archive/${P}.tar.gz"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="Sun-BSD-no-nuclear-2005"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 ppc64"
|
|
|
|
DEPEND=">=virtual/jdk-1.8:*"
|
|
RDEPEND=">=virtual/jre-1.8:*"
|
|
|
|
JAVA_RESOURCE_DIRS="${PN}-${P}/src/main/resources"
|
|
JAVA_SRC_DIR="${PN}-${P}/src/main/java"
|
|
|
|
JAVA_TEST_GENTOO_CLASSPATH="junit-4"
|
|
JAVA_TEST_RESOURCE_DIRS="${PN}-${P}/src/test/resources"
|
|
JAVA_TEST_SRC_DIR="${PN}-${P}/src/test/java"
|