blob: f786f7765d47e102f268afbf8bad28dc2c517a72 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/octopus/octopus-3.0.1.ebuild,v 1.4 2005/07/12 21:37:33 axxo Exp $
inherit java-pkg
MY_PV=${PV//./-}
MY_PV=${MY_PV/-/.}
DESCRIPTION="A Java-based Extraction, Transformation, and Loading (ETL) tool. It may connect to any JDBC data sources and perform transformations defined in an XML file."
SRC_URI="http://download.forge.objectweb.org/${PN}/${PN}-${MY_PV}.src.tar.gz
mirror://gentoo/${PN}-xmls-${PV}.tar.bz2"
HOMEPAGE="http://octopus.objectweb.org"
LICENSE="LGPL-2.1"
SLOT="3.0"
KEYWORDS="~amd64 x86"
IUSE="doc jikes source"
RDEPEND=">=virtual/jre-1.4
>=dev-java/xerces-2.6
>=dev-java/log4j-1.2.8
=dev-java/rhino-1.6*
>=dev-java/fop-0.20.5
>=dev-db/hsqldb-1.7.2.4"
DEPEND=">=virtual/jdk-1.4
${RDEPEND}
jikes? ( >=dev-java/jikes-1.21 )
source? ( app-arch/zip )
>=dev-java/ant-core-1.4
>=app-arch/unzip-5.50-r1"
S=${WORKDIR}/${PN}-3.0/Octopus-src
src_unpack() {
unpack ${A}
mv xmls ${S}/modules/Octopus
cd ${S}/modules
cp ${FILESDIR}/${P}-gentoo-build.xml build.xml
}
src_compile() {
cd ${S}/modules
local antflags="jar-all"
use doc && antflags="${antflags} docs-all"
use jikes && antflags="${antflags} -Dbuild.compiler=jikes"
use source && antflags="${antflags} sourcezip-all"
ant ${antflags} || die "failed to build"
}
src_install() {
dodoc ChangeLog.txt ReleaseNotes.txt
cd ${S}/modules
java-pkg_dojar dist/*.jar
if use source; then
dodir /usr/share/doc/${PF}/source
cp dist/*-src.zip ${D}usr/share/doc/${PF}/source
fi
if use doc; then
java-pkg_dohtml -r docs/*
fi
}
|