summaryrefslogtreecommitdiff
path: root/dev-db/schemaspy/schemaspy-3.1.1.ebuild
blob: 6e1851807d333b285c3ab23f4c02d3470465bce1 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

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

DESCRIPTION="Graphical database schema metadata browser"
HOMEPAGE="http://schemaspy.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/schemaSpy_${PV}.source.jar"
LICENSE="LGPL"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="postgres firebird oracle mysql"

DEPEND="
	>=virtual/jdk-1.4
	dev-java/ant-core
	app-arch/unzip
"
RDEPEND="
	>=virtual/jre-1.4
	postgres? ( dev-java/jdbc3-postgresql )
	firebird? ( dev-java/jdbc3-firebird )
	oracle? ( dev-java/jdbc3-oracle )
	mysql? ( dev-java/jdbc-mysql )
	!dev-db/schemaspy-svn
"

src_unpack() {
	mkdir "${S}"
	cd "${S}"
	unpack "${A}"
	cp ${FILESDIR}/build.xml ./
	rm -rf META-INF/
	mkdir src
	mv net *.css images src
	use postgres && java-pkg_jar-from jdbc3-postgresql-1
	use firebird && java-pkg_jar-from jdbc3-firebird
	# XXX: I don't know if it's the right name for oracle package
	use oracle && java-pkg_jar-from jdbc3-oracle
	use mysql && java-pkg_jar-from jdbc-mysql
}

src_compile() {
	eant || die "Failed complie"
}

src_install() {
	java-pkg_dojar dist/schemaSpy.jar
	java-pkg_dolauncher ${PN}
	insinto /etc/java-config-2/launcher.d/
	newins ${FILESDIR}/schemaspy.launcherd ${PN}
}