summaryrefslogtreecommitdiff
blob: 140731db08a583c108dfb187b588107d3839874e (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="5"
JAVA_PKG_IUSE="doc source"
WANT_ANT_TASKS="ant-nodeps"

inherit eutils java-pkg-2 java-ant-2 versionator

if [[ ${PV} != 9999 ]]; then
	SRC_URI="http://www.willuhn.de/products/hibiscus/releases/${MY_PV}/hibiscus.src.zip -> ${P}.zip"
	KEYWORDS="~amd64 ~x86"
	MY_PV="$(get_version_component_range 1-2)"
else
	inherit git-r3
	EGIT_REPO_URI="https://github.com/willuhn/hibiscus.git"
	MY_PV="9999"
fi

DESCRIPTION="A HBCI homebanking application based on hbci4java"
HOMEPAGE="http://www.willuhn.de/products/hibiscus/"

LICENSE="GPL-2"
SLOT="0"
IUSE=""

COMMON_DEP="=dev-java/jameica-${MY_PV}*
	>=net-libs/willuhn-hbci4java-$PV
	>=dev-java/obantoo-2.1.12
	dev-java/super-csv
	>=dev-java/swt-chart-0.7.0"

RDEPEND=">=virtual/jre-1.5
	${COMMON_DEP}"

DEPEND=">=virtual/jdk-1.5
	${COMMON_DEP}"

java_prepare() {
	epatch "${FILESDIR}/2.4.2-hbci4java-so-filename.patch"
	epatch "${FILESDIR}/super-csv-api.patch"

	rm -rv -v "${S}/lib/"*

	java-pkg_jar-from --with-dependencies --into "${S}/lib/" willuhn-hbci4java,obantoo,jameica,super-csv,swt-chart
}

src_compile() {
	eant -f build/build.xml jar $(use_doc javadoc)
}

src_install() {

	local plugin_dir=/usr/share/jameica/plugins/hibiscus

	dodir ${plugin_dir}
	insinto ${plugin_dir}

	doins plugin.xml
	doins releases/*/${PN}/${PN}.jar

	cp -R "${S}/updates" "${D}${plugin_dir}" || die "Install failed!"
	cp -R "${S}/sql" "${D}${plugin_dir}" || die "Install failed!"

	dodir ${plugin_dir}/lib

	dosym "$(java-pkg_getjars willuhn-hbci4java)" ${plugin_dir}/lib/
	dosym "$(java-pkg_getjars obantoo)" ${plugin_dir}/lib/
	dosym "$(java-pkg_getjars super-csv)" ${plugin_dir}/lib/
	dosym "$(java-pkg_getjars itext-5)" ${plugin_dir}/lib/

	dosym "$(java-pkg_getjar swt-chart org.swtchart.jar)" ${plugin_dir}/lib/
	dosym "$(java-pkg_getjar swt-chart org.swtchart.ext.jar)" ${plugin_dir}/lib/

	newicon icons/${PN}-icon-16x16.png ${PN}-icon-16x16.png || die "newicon failed"
	newicon icons/${PN}-icon-32x32.png ${PN}-icon-32x32.png || die "newicon failed"
	newicon icons/${PN}-icon-64x64.png ${PN}-icon-64x64.png || die "newicon failed"

	use doc && java-pkg_dojavadoc releases/${PV}-0/javadoc
	use source && java-pkg_dosrc src/de
}