blob: 76943a72f56124ebb8b3773be9a4422c712b484c (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/datavision/datavision-1.0.0-r2.ebuild,v 1.4 2007/01/30 18:50:59 betelgeuse Exp $
inherit java-pkg-2 java-ant-2
DESCRIPTION="Open Source reporting tool similar to Crystal Reports"
SRC_URI="mirror://sourceforge/datavision/${P}.tar.gz"
HOMEPAGE="http://datavision.sourceforge.net/"
IUSE="doc mysql postgres ruby"
SLOT="1.0"
LICENSE="Apache-1.1"
KEYWORDS="~x86 ~ppc ~amd64"
RDEPEND=">=virtual/jre-1.4
>=dev-java/itext-1.02b
>=dev-java/jcalendar-1.2
=dev-java/bsf-2.3*
ruby? ( >=dev-java/jruby-0.7.0 )
mysql? ( >=dev-java/jdbc-mysql-3.0 )
postgres? ( >=dev-java/jdbc2-postgresql-7.3 )"
DEPEND=">=virtual/jdk-1.4
>=dev-java/jruby-0.9.0
dev-java/ant-core
${RDEPEND}"
# test? ( >=dev-java/junit-3.7 )"
src_unpack() {
unpack ${A}
cd "${S}/lib"
# lets avoid a new packed jar issue :)
rm -v *.jar
java-pkg_jar-from itext
java-pkg_jar-from bsf-2.3
java-pkg_jar-from jcalendar-1.2
use ruby && java-pkg_jar-from jruby
cd "${S}"
# Let's use jruby instead as this is java and we can RDEPEND on it
# during run time any way
# https://bugs.gentoo.org/show_bug.cgi?id=164402
sed -e 's/executable=\"ruby\"/executable=\"jruby\"/' -i build.xml \
|| die "Failed to replace ruby with jruby"
use mysql && java-pkg_jar-from jdbc-mysql
use postgres && java-pkg_jar-from jdbc2-postgresql-6
}
#Seems only useful in CVS when there are actually changes to doc sources
#EANT_DOC_TARGET="docs.release"
RESTRICT="test"
#src_test() {
# Tests need X
#eant test -Djunit.jar="$(java-pkg_getjars --build-only junit)" \
# -Djava.awt.headless=true
#}
src_install() {
java-pkg_dojar lib/DataVision.jar
local docdir="/usr/share/doc/${PF}/"
java-pkg_dolauncher ${PN} \
--main jimm.datavision.DataVision \
--pwd ${docdir}
# Needed for help
dohtml docs/DataVision/*
dodir ${docdir}/docs
dosym ${docdir}/html ${docdir}/docs/DataVision
dodoc ChangeLog Credits README TODO
use doc && java-pkg_dojavadoc javadoc
}
pkg_postinst() {
if use mysql; then
elog
elog "MySQL example:"
elog "Driver class name: com.mysql.jdbc.Driver"
elog "Connection: jdbc:mysql://localhost/database"
fi
if use postgres; then
elog
elog "PostgreSQL example:"
elog "Driver class name:org.postgresql.Driver"
elog "Connection: jdbc:postgresql://localhost/database"
fi
elog "Because we need to change the current working directory"
elog "in the launcher for the help to work, the launcher can't be"
elog "used with relative paths. Patches are welcome."
elog ""
elog "The build system needs ruby so the ruby use flag only affects"
elog "RDEPEND."
}
|