blob: 07effbc5a455214ade6794b13db704d49c467c5b (
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
|
# 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.jidesoft:jide-oss:3.7.12"
JAVA_TESTING_FRAMEWORKS="junit-4"
MY_COMMIT="19083238ce00ecbd7370f856cb64ea69dae669a5"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="JIDE Common Layer (Professional Swing Components)"
HOMEPAGE="https://github.com/jidesoft/jide-oss"
SRC_URI="https://github.com/jidesoft/jide-oss/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_COMMIT}"
LICENSE="GPL-2-with-classpath-exception"
SLOT="0"
KEYWORDS="~amd64"
# Upstream does not support java-11
# https://github.com/jidesoft/jide-oss/issues/30
DEPEND="virtual/jdk:1.8"
RDEPEND="virtual/jre:1.8"
DOCS=( {'Readme JDK9',README}.txt libs/README_lib )
JAVA_GENTOO_CLASSPATH_EXTRA="libs/ui.jar"
JAVA_RESOURCE_DIRS=( "src" "properties" )
JAVA_SRC_DIR=( "src" "src-jdk8" )
JAVA_TEST_GENTOO_CLASSPATH="junit-4"
JAVA_TEST_SRC_DIR="test"
JAVA_TEST_EXCLUDES=(
"com.jidesoft.swing.CornerScrollerVisualTest" # No runnable methods
"com.jidesoft.swing.TestResizableWindow" # No runnable methods
"com.jidesoft.utils.TestCacheArray" # No runnable methods
# junit.framework.AssertionFailedError: expected:<0> but was:<100>
# probably the test is wrong as a cache entry is created for each font size
# and each iteration creates a new font size
"com.jidesoft.utils.TestFontUtils"
)
src_prepare() {
java-pkg-2_src_prepare
rm libs/junit-4.10.jar || die
}
|