summaryrefslogtreecommitdiff
path: root/dev-java/jcalendar/jcalendar-1.4-r2.ebuild
blob: 2985f2ad4db045a1c825d34c37311afd9ac9d244 (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
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

JAVA_PKG_IUSE="doc source"

inherit java-pkg-2 java-pkg-simple

DESCRIPTION="Java date chooser bean for graphically picking a date"
HOMEPAGE="https://toedter.com/jcalendar/"
SRC_URI="https://www.toedter.com/download/${P}.zip"

LICENSE="LGPL-2.1"
SLOT="1.2"
KEYWORDS="amd64 x86"

BDEPEND="app-arch/unzip"

CP_DEPEND="dev-java/jgoodies-looks:2.6"

DEPEND="
	${CP_DEPEND}
	>=virtual/jdk-1.8:*"

RDEPEND="
	${CP_DEPEND}
	>=virtual/jre-1.8:*"

JAVA_MAIN_CLASS="com.toedter.calendar.demo.JCalendarDemo"
JAVA_RESOURCE_DIRS="res"
JAVA_SRC_DIR="src"

src_prepare() {
	java-pkg-2_src_prepare
	java-pkg_clean
	mkdir -p res/META-INF || die
	mv src/jcalendar.manifest res/META-INF/MANIFEST.MF || die
	pushd src > /dev/null || die
		find com -type f ! -name '*.java' \
			| xargs cp --parents -t ../res || die
	popd > /dev/null || die
}