aboutsummaryrefslogtreecommitdiff
blob: 4233e67953c67d2f028f851080fd2365563532c9 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

JAVA_PKG_IUSE="doc source test"
JAVA_TESTING_FRAMEWORKS="junit-4"

inherit java-pkg-2 java-pkg-simple

DESCRIPTION="A multidimensional, type-agnostic image processing library."
HOMEPAGE="
	http://imglib2.net/
	https://github.com/imglib/imglib2
"

if [[ ${PV} == 9999 ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/imglib/imglib2.git"
	S="${WORKDIR}/${P}"
	MAVEN_ID="net.imglib2:imglib2:9999"
else
	SRC_URI="
		https://github.com/imglib/${PN}/archive/refs/tags/${P}.tar.gz -> ${P}-sources.tar.gz
	"
	S="${WORKDIR}/${PN}-${P}"
	MAVEN_ID="net.imglib2:imglib2:6.3.0"
	KEYWORDS="~amd64"
fi

LICENSE="BSD-2"
SLOT="0"

# jmh-core: According to the pom version 1.36 is required,
# however, jmh-core-1.35 is latest available in Gentoo
BDEPEND="
	>=virtual/jdk-1.8:*
	test? (
		>=dev-java/jama-1.0.3
		>=dev-java/junit-4.13.2
		>=dev-java/jmh-core-1.35
	)
"

RDEPEND="
	>=virtual/jre-1.8:*
"

JAVA_SRC_DIR="src/main/java"
JAVA_MAIN_CLASS=""

JAVA_TEST_GENTOO_CLASSPATH="jama,junit-4,jmh-core"
JAVA_TEST_SRC_DIR="src/test/java"